| 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 29 matching lines...) Expand all Loading... |
| 40 guard$num(x) { return x; } | 40 guard$num(x) { return x; } |
| 41 guard$string(x) { return x; } | 41 guard$string(x) { return x; } |
| 42 guard$stringOrArray(x) { return x; } | 42 guard$stringOrArray(x) { return x; } |
| 43 makeLiteralMap(List keyValuePairs) {} | 43 makeLiteralMap(List keyValuePairs) {} |
| 44 setRuntimeTypeInfo(a, b) {} | 44 setRuntimeTypeInfo(a, b) {} |
| 45 getRuntimeTypeInfo(a) {} | 45 getRuntimeTypeInfo(a) {} |
| 46 stringTypeCheck(x) {} | 46 stringTypeCheck(x) {} |
| 47 boolConversionCheck(x) {} | 47 boolConversionCheck(x) {} |
| 48 abstract class JavaScriptIndexingBehavior {} | 48 abstract class JavaScriptIndexingBehavior {} |
| 49 class JSInvocationMirror {} | 49 class JSInvocationMirror {} |
| 50 class Closure {} |
| 51 class Null {} |
| 52 class Dynamic_ {} |
| 50 S() {} | 53 S() {} |
| 51 assertHelper(a){} | 54 assertHelper(a){} |
| 52 throwNoSuchMethod(obj, name, arguments, expectedArgumentNames) {} | 55 throwNoSuchMethod(obj, name, arguments, expectedArgumentNames) {} |
| 53 throwAbstractClassInstantiationError(className) {}'''; | 56 throwAbstractClassInstantiationError(className) {}'''; |
| 54 | 57 |
| 55 const String DEFAULT_INTERCEPTORSLIB = r''' | 58 const String DEFAULT_INTERCEPTORSLIB = r''' |
| 56 class JSArray { | 59 class JSArray { |
| 57 var length; | 60 var length; |
| 58 operator[](index) {} | 61 operator[](index) {} |
| 59 operator[]=(index, value) {} | 62 operator[]=(index, value) {} |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 class bool {} | 108 class bool {} |
| 106 class String {} | 109 class String {} |
| 107 class Object { | 110 class Object { |
| 108 operator ==(other) {} | 111 operator ==(other) {} |
| 109 String toString() {} | 112 String toString() {} |
| 110 } | 113 } |
| 111 class Type {} | 114 class Type {} |
| 112 class Function {} | 115 class Function {} |
| 113 class List<E> {} | 116 class List<E> {} |
| 114 abstract class Map<K,V> {} | 117 abstract class Map<K,V> {} |
| 115 class Closure {} | |
| 116 class Null {} | |
| 117 class Dynamic_ {} | |
| 118 bool identical(Object a, Object b) {}'''; | 118 bool identical(Object a, Object b) {}'''; |
| 119 | 119 |
| 120 const String DEFAULT_ISOLATE_HELPERLIB = r''' | 120 const String DEFAULT_ISOLATE_HELPERLIB = r''' |
| 121 class _WorkerBase {}'''; | 121 class _WorkerBase {}'''; |
| 122 | 122 |
| 123 class MockCompiler extends Compiler { | 123 class MockCompiler extends Compiler { |
| 124 List<WarningMessage> warnings; | 124 List<WarningMessage> warnings; |
| 125 List<WarningMessage> errors; | 125 List<WarningMessage> errors; |
| 126 final Map<String, SourceFile> sourceFiles; | 126 final Map<String, SourceFile> sourceFiles; |
| 127 Node parsedTree; | 127 Node parsedTree; |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 operator []=(Node node, Element element) { | 332 operator []=(Node node, Element element) { |
| 333 map[node] = element; | 333 map[node] = element; |
| 334 } | 334 } |
| 335 | 335 |
| 336 operator [](Node node) => map[node]; | 336 operator [](Node node) => map[node]; |
| 337 | 337 |
| 338 void remove(Node node) { | 338 void remove(Node node) { |
| 339 map.remove(node); | 339 map.remove(node); |
| 340 } | 340 } |
| 341 } | 341 } |
| OLD | NEW |