| Index: pkg/analysis_server/test/integration/protocol_matchers.dart
|
| diff --git a/pkg/analysis_server/test/integration/protocol_matchers.dart b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| index 723fda1e4b99a0bbaacb9f988e064b173685b48d..32970af3a66963cfe18cad21e535cab330e48bd7 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -988,7 +988,6 @@ final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [
|
| * "generateDart2jsHints": optional bool
|
| * "generateHints": optional bool
|
| * "generateLints": optional bool
|
| - * "fileReadMode": optional FileReadMode
|
| * }
|
| */
|
| final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject(
|
| @@ -998,8 +997,7 @@ final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject(
|
| "enableEnums": isBool,
|
| "generateDart2jsHints": isBool,
|
| "generateHints": isBool,
|
| - "generateLints": isBool,
|
| - "fileReadMode": isFileReadMode
|
| + "generateLints": isBool
|
| }));
|
|
|
| /**
|
| @@ -1262,19 +1260,6 @@ final Matcher isExecutionService = new MatchesEnum("ExecutionService", [
|
| final Matcher isFilePath = isString;
|
|
|
| /**
|
| - * FileReadMode
|
| - *
|
| - * enum {
|
| - * AS_IS
|
| - * NORMALIZE_EOL
|
| - * }
|
| - */
|
| -final Matcher isFileReadMode = new MatchesEnum("FileReadMode", [
|
| - "AS_IS",
|
| - "NORMALIZE_EOL"
|
| -]);
|
| -
|
| -/**
|
| * FoldingKind
|
| *
|
| * enum {
|
|
|