| 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 32970af3a66963cfe18cad21e535cab330e48bd7..723fda1e4b99a0bbaacb9f988e064b173685b48d 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -988,6 +988,7 @@ 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(
|
| @@ -997,7 +998,8 @@ final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject(
|
| "enableEnums": isBool,
|
| "generateDart2jsHints": isBool,
|
| "generateHints": isBool,
|
| - "generateLints": isBool
|
| + "generateLints": isBool,
|
| + "fileReadMode": isFileReadMode
|
| }));
|
|
|
| /**
|
| @@ -1260,6 +1262,19 @@ 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 {
|
|
|