8d04e49078
Each of these imports removed is redundant with 'package:kernel/ast.dart'. Bug: https://github.com/dart-lang/sdk/issues/44569 Change-Id: Ia9bc08b4ffd863572c84fe8a4fa465d2e8e04f7c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/213845 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Samuel Rawlins <srawlins@google.com>
15 lines
452 B
Dart
15 lines
452 B
Dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
library kernel.transformations.empty;
|
|
|
|
import '../ast.dart';
|
|
|
|
Component transformComponent(Component component) {
|
|
new EmptyTransformer().visitComponent(component);
|
|
return component;
|
|
}
|
|
|
|
class EmptyTransformer extends Transformer {}
|