| 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:collection'; | 7 import 'dart:collection'; |
| 8 import 'dart:uri'; | 8 import 'dart:uri'; |
| 9 | 9 |
| 10 import '../../../sdk/lib/_internal/compiler/compiler.dart' as api; | 10 import '../../../sdk/lib/_internal/compiler/compiler.dart' as api; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 operator <<(other) {} | 76 operator <<(other) {} |
| 77 operator >>(other) {} | 77 operator >>(other) {} |
| 78 operator |(other) {} | 78 operator |(other) {} |
| 79 operator &(other) {} | 79 operator &(other) {} |
| 80 operator ^(other) {} | 80 operator ^(other) {} |
| 81 operator >(other) {} | 81 operator >(other) {} |
| 82 operator >=(other) {} | 82 operator >=(other) {} |
| 83 operator <(other) {} | 83 operator <(other) {} |
| 84 operator <=(other) {} | 84 operator <=(other) {} |
| 85 operator ==(other) {} | 85 operator ==(other) {} |
| 86 operator %(other) {} |
| 86 } | 87 } |
| 87 class JSInt { | 88 class JSInt { |
| 88 } | 89 } |
| 89 class JSDouble { | 90 class JSDouble { |
| 90 } | 91 } |
| 91 class JSNull { | 92 class JSNull { |
| 92 } | 93 } |
| 93 class JSBool { | 94 class JSBool { |
| 94 } | 95 } |
| 95 class JSFunction { | 96 class JSFunction { |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 operator []=(Node node, Element element) { | 330 operator []=(Node node, Element element) { |
| 330 map[node] = element; | 331 map[node] = element; |
| 331 } | 332 } |
| 332 | 333 |
| 333 operator [](Node node) => map[node]; | 334 operator [](Node node) => map[node]; |
| 334 | 335 |
| 335 void remove(Node node) { | 336 void remove(Node node) { |
| 336 map.remove(node); | 337 map.remove(node); |
| 337 } | 338 } |
| 338 } | 339 } |
| OLD | NEW |