| Index: sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart b/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
|
| index d17bc8c2e2f21098c0b45c07e06c0c8837724d22..cca2e51103894e8690b26c31f67a08a1b5211a20 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
|
| @@ -87,7 +87,7 @@ class Keyword extends IterableBase<int> implements SourceString {
|
| PrecedenceInfo this.info: KEYWORD_INFO});
|
|
|
| static Map<String, Keyword> computeKeywordMap() {
|
| - Map<String, Keyword> result = new LinkedHashMap<String, Keyword>();
|
| + Map<String, Keyword> result = new Map<String, Keyword>();
|
| for (Keyword keyword in values) {
|
| result[keyword.syntax] = keyword;
|
| }
|
|
|