| 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 fc09adb6655d92f32748e3bec043e8e385f04b17..c7969f4ac0de93607ec16e3448be924a00c9a031 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -761,16 +761,17 @@ final Matcher isExecutionSetSubscriptionsResult = isNull;
|
| * execution.launchData params
|
| *
|
| * {
|
| - * "executables": List<ExecutableFile>
|
| - * "dartToHtml": Map<FilePath, List<FilePath>>
|
| - * "htmlToDart": Map<FilePath, List<FilePath>>
|
| + * "file": FilePath
|
| + * "kind": optional ExecutableKind
|
| + * "referencedFiles": optional List<FilePath>
|
| * }
|
| */
|
| final Matcher isExecutionLaunchDataParams = new LazyMatcher(() => new MatchesJsonObject(
|
| "execution.launchData params", {
|
| - "executables": isListOf(isExecutableFile),
|
| - "dartToHtml": isMapOf(isFilePath, isListOf(isFilePath)),
|
| - "htmlToDart": isMapOf(isFilePath, isListOf(isFilePath))
|
| + "file": isFilePath
|
| + }, optionalFields: {
|
| + "kind": isExecutableKind,
|
| + "referencedFiles": isListOf(isFilePath)
|
| }));
|
|
|
| /**
|
| @@ -1144,12 +1145,14 @@ final Matcher isExecutableFile = new LazyMatcher(() => new MatchesJsonObject(
|
| * enum {
|
| * CLIENT
|
| * EITHER
|
| + * NOT_EXECUTABLE
|
| * SERVER
|
| * }
|
| */
|
| final Matcher isExecutableKind = new MatchesEnum("ExecutableKind", [
|
| "CLIENT",
|
| "EITHER",
|
| + "NOT_EXECUTABLE",
|
| "SERVER"
|
| ]);
|
|
|
|
|