| 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 mock_compiler; | 5 library mock_compiler; |
| 6 | 6 |
| 7 import 'dart:uri'; | 7 import 'dart:uri'; |
| 8 | 8 |
| 9 import '../../../lib/compiler/compiler.dart' as api; | 9 import '../../../sdk/lib/_internal/compiler/compiler.dart' as api; |
| 10 import '../../../lib/compiler/implementation/dart2jslib.dart' hide TreeElementMa
pping; | 10 import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart' |
| 11 import '../../../lib/compiler/implementation/elements/elements.dart'; | 11 hide TreeElementMapping; |
| 12 import '../../../lib/compiler/implementation/resolution/resolution.dart'; | 12 import '../../../sdk/lib/_internal/compiler/implementation/elements/elements.dar
t'; |
| 13 import '../../../lib/compiler/implementation/source_file.dart'; | 13 import '../../../sdk/lib/_internal/compiler/implementation/resolution/resolution
.dart'; |
| 14 import '../../../lib/compiler/implementation/tree/tree.dart'; | 14 import '../../../sdk/lib/_internal/compiler/implementation/source_file.dart'; |
| 15 import '../../../lib/compiler/implementation/util/util.dart'; | 15 import '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart'; |
| 16 import '../../../sdk/lib/_internal/compiler/implementation/util/util.dart'; |
| 16 import 'parser_helper.dart'; | 17 import 'parser_helper.dart'; |
| 17 | 18 |
| 18 class WarningMessage { | 19 class WarningMessage { |
| 19 Node node; | 20 Node node; |
| 20 Message message; | 21 Message message; |
| 21 WarningMessage(this.node, this.message); | 22 WarningMessage(this.node, this.message); |
| 22 | 23 |
| 23 toString() => message.toString(); | 24 toString() => message.toString(); |
| 24 } | 25 } |
| 25 | 26 |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 operator []=(Node node, Element element) { | 253 operator []=(Node node, Element element) { |
| 253 map[node] = element; | 254 map[node] = element; |
| 254 } | 255 } |
| 255 | 256 |
| 256 operator [](Node node) => map[node]; | 257 operator [](Node node) => map[node]; |
| 257 | 258 |
| 258 void remove(Node node) { | 259 void remove(Node node) { |
| 259 map.remove(node); | 260 map.remove(node); |
| 260 } | 261 } |
| 261 } | 262 } |
| OLD | NEW |