| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 for creating mock versions of platform and internal libraries. | 5 // Library for creating mock versions of platform and internal libraries. |
| 6 | 6 |
| 7 library mock_libraries; | 7 library mock_libraries; |
| 8 | 8 |
| 9 const DEFAULT_PLATFORM_CONFIG = """ | 9 const DEFAULT_PLATFORM_CONFIG = """ |
| 10 [libraries] | 10 [libraries] |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 get hashCode => throw "Object.hashCode not implemented."; | 94 get hashCode => throw "Object.hashCode not implemented."; |
| 95 String toString() { return null; } | 95 String toString() { return null; } |
| 96 noSuchMethod(im) { throw im; } | 96 noSuchMethod(im) { throw im; } |
| 97 }''', | 97 }''', |
| 98 'Resource': 'class Resource {}', | 98 'Resource': 'class Resource {}', |
| 99 'StackTrace': 'abstract class StackTrace {}', | 99 'StackTrace': 'abstract class StackTrace {}', |
| 100 'String': 'class String implements Pattern {}', | 100 'String': 'class String implements Pattern {}', |
| 101 'Symbol': 'class Symbol { final name; const Symbol(this.name); }', | 101 'Symbol': 'class Symbol { final name; const Symbol(this.name); }', |
| 102 'Type': 'class Type {}', | 102 'Type': 'class Type {}', |
| 103 'Pattern': 'abstract class Pattern {}', | 103 'Pattern': 'abstract class Pattern {}', |
| 104 |
| 105 '_genericNoSuchMethod': '_genericNoSuchMethod(a,b,c,d,e) {}', |
| 106 '_unresolvedConstructorError': '_unresolvedConstructorError(a,b,c,d,e) {}', |
| 107 '_malformedTypeError': '_malformedTypeError(message) {}', |
| 104 }; | 108 }; |
| 105 | 109 |
| 106 const String DEFAULT_PATCH_CORE_SOURCE = r''' | 110 const String DEFAULT_PATCH_CORE_SOURCE = r''' |
| 107 import 'dart:_js_helper'; | 111 import 'dart:_js_helper'; |
| 108 import 'dart:_interceptors'; | 112 import 'dart:_interceptors'; |
| 109 import 'dart:_isolate_helper'; | 113 import 'dart:_isolate_helper'; |
| 110 import 'dart:async'; | 114 import 'dart:async'; |
| 111 | 115 |
| 112 @patch | 116 @patch |
| 113 class LinkedHashMap<K, V> { | 117 class LinkedHashMap<K, V> { |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 | 460 |
| 457 const LookupMap(this._entries, [this._nestedMaps = const []]) | 461 const LookupMap(this._entries, [this._nestedMaps = const []]) |
| 458 : _key = null, _value = null; | 462 : _key = null, _value = null; |
| 459 | 463 |
| 460 const LookupMap.pair(this._key, this._value) | 464 const LookupMap.pair(this._key, this._value) |
| 461 : _entries = const [], _nestedMaps = const []; | 465 : _entries = const [], _nestedMaps = const []; |
| 462 V operator[](K k) => null; | 466 V operator[](K k) => null; |
| 463 }''', | 467 }''', |
| 464 '_version': 'const _version = "0.0.1+1";', | 468 '_version': 'const _version = "0.0.1+1";', |
| 465 }; | 469 }; |
| OLD | NEW |