| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library dart2js.common.resolution; | 5 library dart2js.common.resolution; |
| 6 | 6 |
| 7 import '../compiler.dart' show | 7 import '../compiler.dart' show |
| 8 Compiler; | 8 Compiler; |
| 9 import '../dart_types.dart' show | 9 import '../dart_types.dart' show |
| 10 DartType; | 10 DartType; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 /// Register that a super call will end up calling | 108 /// Register that a super call will end up calling |
| 109 /// [: super.noSuchMethod :]. | 109 /// [: super.noSuchMethod :]. |
| 110 void onSuperNoSuchMethod(Registry registry) {} | 110 void onSuperNoSuchMethod(Registry registry) {} |
| 111 | 111 |
| 112 /// Register that the application creates a constant map. | 112 /// Register that the application creates a constant map. |
| 113 void onMapLiteral(Registry registry, DartType type, bool isConstant) {} | 113 void onMapLiteral(Registry registry, DartType type, bool isConstant) {} |
| 114 | 114 |
| 115 /// Called when resolving the `Symbol` constructor. | 115 /// Called when resolving the `Symbol` constructor. |
| 116 void onSymbolConstructor(Registry registry) {} | 116 void onSymbolConstructor(Registry registry) {} |
| 117 |
| 118 /// Called when resolving a prefix or postfix expression. |
| 119 void onIncDecOperation(Registry registry) {} |
| 117 } | 120 } |
| OLD | NEW |