| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 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 | 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 import 'package:kernel/ast.dart' as ir; | 5 import 'package:kernel/ast.dart' as ir; |
| 6 import 'package:kernel/frontend/accessors.dart' | 6 import 'package:kernel/frontend/accessors.dart' |
| 7 show | 7 show |
| 8 Accessor, | 8 Accessor, |
| 9 IndexAccessor, | 9 IndexAccessor, |
| 10 NullAwarePropertyAccessor, | 10 NullAwarePropertyAccessor, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 import '../common.dart'; | 24 import '../common.dart'; |
| 25 import '../common/names.dart'; | 25 import '../common/names.dart'; |
| 26 import '../constants/expressions.dart' | 26 import '../constants/expressions.dart' |
| 27 show | 27 show |
| 28 BoolFromEnvironmentConstantExpression, | 28 BoolFromEnvironmentConstantExpression, |
| 29 ConstantExpression, | 29 ConstantExpression, |
| 30 ConstructedConstantExpression, | 30 ConstructedConstantExpression, |
| 31 IntFromEnvironmentConstantExpression, | 31 IntFromEnvironmentConstantExpression, |
| 32 StringFromEnvironmentConstantExpression, | 32 StringFromEnvironmentConstantExpression, |
| 33 TypeConstantExpression; | 33 TypeConstantExpression; |
| 34 import '../dart_types.dart' show DartType, InterfaceType; | 34 import '../elements/resolution_types.dart' show DartType, InterfaceType; |
| 35 import '../diagnostics/spannable.dart' show Spannable; | 35 import '../diagnostics/spannable.dart' show Spannable; |
| 36 import '../elements/elements.dart' | 36 import '../elements/elements.dart' |
| 37 show | 37 show |
| 38 AstElement, | 38 AstElement, |
| 39 AsyncMarker, | 39 AsyncMarker, |
| 40 ClassElement, | 40 ClassElement, |
| 41 ConstructorElement, | 41 ConstructorElement, |
| 42 Element, | 42 Element, |
| 43 FieldElement, | 43 FieldElement, |
| 44 FunctionElement, | 44 FunctionElement, |
| (...skipping 2802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2847 : this(null, true, node, initializers); | 2847 : this(null, true, node, initializers); |
| 2848 | 2848 |
| 2849 accept(ir.Visitor v) => throw "unsupported"; | 2849 accept(ir.Visitor v) => throw "unsupported"; |
| 2850 | 2850 |
| 2851 visitChildren(ir.Visitor v) => throw "unsupported"; | 2851 visitChildren(ir.Visitor v) => throw "unsupported"; |
| 2852 | 2852 |
| 2853 String toString() { | 2853 String toString() { |
| 2854 return "IrFunction($kind, $isConstructor, $node, $initializers)"; | 2854 return "IrFunction($kind, $isConstructor, $node, $initializers)"; |
| 2855 } | 2855 } |
| 2856 } | 2856 } |
| OLD | NEW |