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 String buildLibrarySource( | 9 String buildLibrarySource( |
10 Map<String, String> elementMap, | 10 Map<String, String> elementMap, |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 final _entries; | 424 final _entries; |
425 final _nestedMaps; | 425 final _nestedMaps; |
426 | 426 |
427 const LookupMap(this._entries, [this._nestedMaps = const []]) | 427 const LookupMap(this._entries, [this._nestedMaps = const []]) |
428 : _key = null, _value = null; | 428 : _key = null, _value = null; |
429 | 429 |
430 const LookupMap.pair(this._key, this._value) | 430 const LookupMap.pair(this._key, this._value) |
431 : _entries = const [], _nestedMaps = const []; | 431 : _entries = const [], _nestedMaps = const []; |
432 V operator[](K k) => null; | 432 V operator[](K k) => null; |
433 }''', | 433 }''', |
| 434 '_version': 'const _version = "0.0.1";', |
434 }; | 435 }; |
OLD | NEW |