OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library kernel.transformations.closure.converter; |
| 6 |
| 7 import '../../ast.dart' show DartType, FunctionNode, TreeNode, TypeParameter; |
| 8 |
| 9 import '../../clone.dart' show CloneVisitor; |
| 10 |
| 11 class CloneWithoutBody extends CloneVisitor { |
| 12 CloneWithoutBody({Map<TypeParameter, DartType> typeSubstitution}) |
| 13 : super(typeSubstitution: typeSubstitution); |
| 14 |
| 15 @override |
| 16 TreeNode cloneFunctionNodeBody(FunctionNode node) => null; |
| 17 } |
OLD | NEW |