| Index: pkg/analysis_server/test/integration/support/protocol_matchers.dart
|
| diff --git a/pkg/analysis_server/test/integration/support/protocol_matchers.dart b/pkg/analysis_server/test/integration/support/protocol_matchers.dart
|
| index 3c1749da27cbb88deb1f14b03152c99807be10ed..dbbc6574d6da4066ceb2d0a462feeee06cd912a5 100644
|
| --- a/pkg/analysis_server/test/integration/support/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/support/protocol_matchers.dart
|
| @@ -1562,6 +1562,68 @@ final Matcher isAnalysisUpdateOptionsParams = new LazyMatcher(() =>
|
| final Matcher isAnalysisUpdateOptionsResult = isNull;
|
|
|
| /**
|
| + * analytics.enable params
|
| + *
|
| + * {
|
| + * "value": bool
|
| + * }
|
| + */
|
| +final Matcher isAnalyticsEnableParams = new LazyMatcher(
|
| + () => new MatchesJsonObject("analytics.enable params", {"value": isBool}));
|
| +
|
| +/**
|
| + * analytics.enable result
|
| + */
|
| +final Matcher isAnalyticsEnableResult = isNull;
|
| +
|
| +/**
|
| + * analytics.isEnabled params
|
| + */
|
| +final Matcher isAnalyticsIsEnabledParams = isNull;
|
| +
|
| +/**
|
| + * analytics.isEnabled result
|
| + *
|
| + * {
|
| + * "enabled": bool
|
| + * }
|
| + */
|
| +final Matcher isAnalyticsIsEnabledResult = new LazyMatcher(() =>
|
| + new MatchesJsonObject("analytics.isEnabled result", {"enabled": isBool}));
|
| +
|
| +/**
|
| + * analytics.sendEvent params
|
| + *
|
| + * {
|
| + * "action": String
|
| + * }
|
| + */
|
| +final Matcher isAnalyticsSendEventParams = new LazyMatcher(() =>
|
| + new MatchesJsonObject("analytics.sendEvent params", {"action": isString}));
|
| +
|
| +/**
|
| + * analytics.sendEvent result
|
| + */
|
| +final Matcher isAnalyticsSendEventResult = isNull;
|
| +
|
| +/**
|
| + * analytics.sendTiming params
|
| + *
|
| + * {
|
| + * "event": String
|
| + * "millis": int
|
| + * }
|
| + */
|
| +final Matcher isAnalyticsSendTimingParams = new LazyMatcher(() =>
|
| + new MatchesJsonObject(
|
| + "analytics.sendTiming params", {"event": isString, "millis": isInt}));
|
| +
|
| +/**
|
| + * analytics.sendTiming result
|
| + */
|
| +final Matcher isAnalyticsSendTimingResult = isNull;
|
| +
|
| +/**
|
| * completion.getSuggestions params
|
| *
|
| * {
|
|
|