| Index: tests/compiler/dart2js/mock_libraries.dart
|
| diff --git a/tests/compiler/dart2js/mock_libraries.dart b/tests/compiler/dart2js/mock_libraries.dart
|
| index b0bcaa16112d13769541ebdb4a3f44942274735b..b4a3de978db71b9051fc94cce4dc9e9a08db0175 100644
|
| --- a/tests/compiler/dart2js/mock_libraries.dart
|
| +++ b/tests/compiler/dart2js/mock_libraries.dart
|
| @@ -397,3 +397,19 @@ const Map<String, String> DEFAULT_MIRRORS_LIBRARY = const <String, String>{
|
| 'MirrorSystem': 'class MirrorSystem {}',
|
| 'MirrorsUsed': 'class MirrorsUsed {}',
|
| };
|
| +
|
| +const Map<String, String> DEFAULT_LOOKUP_MAP_LIBRARY = const <String, String>{
|
| + 'LookupMap': r'''
|
| + class LookupMap<T> {
|
| + final _key;
|
| + final _value;
|
| + final _entries;
|
| + final _nestedMaps;
|
| +
|
| + const LookupMap(this._entries, [this._nestedMaps = const []])
|
| + : _key = null, _value = null;
|
| +
|
| + const LookupMap.pair(this._key, this._value)
|
| + : _entries = const [], _nestedMaps = const [];
|
| + }''',
|
| +};
|
|
|