| 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 library rasta.kernel_visitor; | 5 library rasta.kernel_visitor; |
| 6 | 6 |
| 7 import 'package:kernel/ast.dart' as ir; | 7 import 'package:kernel/ast.dart' as ir; |
| 8 | 8 |
| 9 import 'package:kernel/accessors.dart' show | 9 import 'package:kernel/frontend/accessors.dart' show |
| 10 Accessor, | 10 Accessor, |
| 11 IndexAccessor, | 11 IndexAccessor, |
| 12 NullAwarePropertyAccessor, | 12 NullAwarePropertyAccessor, |
| 13 PropertyAccessor, | 13 PropertyAccessor, |
| 14 ReadOnlyAccessor, | 14 ReadOnlyAccessor, |
| 15 StaticAccessor, | 15 StaticAccessor, |
| 16 SuperIndexAccessor, | 16 SuperIndexAccessor, |
| 17 SuperPropertyAccessor, | 17 SuperPropertyAccessor, |
| 18 ThisPropertyAccessor, | 18 ThisPropertyAccessor, |
| 19 VariableAccessor, | 19 VariableAccessor, |
| (...skipping 3010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3030 : this(null, true, node, initializers); | 3030 : this(null, true, node, initializers); |
| 3031 | 3031 |
| 3032 accept(ir.Visitor v) => throw "unsupported"; | 3032 accept(ir.Visitor v) => throw "unsupported"; |
| 3033 | 3033 |
| 3034 visitChildren(ir.Visitor v) => throw "unsupported"; | 3034 visitChildren(ir.Visitor v) => throw "unsupported"; |
| 3035 | 3035 |
| 3036 String toString() { | 3036 String toString() { |
| 3037 return "IrFunction($kind, $isConstructor, $node, $initializers)"; | 3037 return "IrFunction($kind, $isConstructor, $node, $initializers)"; |
| 3038 } | 3038 } |
| 3039 } | 3039 } |
| OLD | NEW |