@@ -224,7 +224,7 @@ class ChromeProxyService implements VmServiceInterface {
224224 // Expression evaluation is ready after dependencies are updated.
225225 if (! _compilerCompleter.isCompleted) _compilerCompleter.complete ();
226226 return result;
227- }, (result) => DwdsEvent .compilerUpdateDependencies (entrypoint), );
227+ }, (result) => DwdsEvent .compilerUpdateDependencies (entrypoint));
228228 }
229229 }
230230
@@ -683,7 +683,7 @@ class ChromeProxyService implements VmServiceInterface {
683683 RPCErrorKind .kInvalidRequest.code,
684684 'Expression evaluation is not supported for this configuration.' ,
685685 );
686- }, (result) => DwdsEvent .evaluate (expression, result), );
686+ }, (result) => DwdsEvent .evaluate (expression, result));
687687 }
688688
689689 String _newVariableForScope (Map <String , String >? scope) {
@@ -744,7 +744,7 @@ class ChromeProxyService implements VmServiceInterface {
744744 RPCErrorKind .kInvalidRequest.code,
745745 'Expression evaluation is not supported for this configuration.' ,
746746 );
747- }, (result) => DwdsEvent .evaluateInFrame (expression, result), );
747+ }, (result) => DwdsEvent .evaluateInFrame (expression, result));
748748 }
749749
750750 @override
@@ -796,7 +796,7 @@ class ChromeProxyService implements VmServiceInterface {
796796 await isInitialized;
797797 _checkIsolate ('getIsolate' , isolateId);
798798 return inspector.isolate;
799- }, (result) => DwdsEvent .getIsolate (), );
799+ }, (result) => DwdsEvent .getIsolate ());
800800 }
801801
802802 @override
@@ -848,7 +848,7 @@ class ChromeProxyService implements VmServiceInterface {
848848 await isInitialized;
849849 _checkIsolate ('getScripts' , isolateId);
850850 return inspector.getScripts ();
851- }, (result) => DwdsEvent .getScripts (), );
851+ }, (result) => DwdsEvent .getScripts ());
852852 }
853853
854854 @override
@@ -900,7 +900,7 @@ class ChromeProxyService implements VmServiceInterface {
900900 reportLines: reportLines,
901901 libraryFilters: libraryFilters,
902902 );
903- }, (result) => DwdsEvent .getSourceReport (), );
903+ }, (result) => DwdsEvent .getSourceReport ());
904904 }
905905
906906 /// Returns the current stack.
@@ -936,7 +936,7 @@ class ChromeProxyService implements VmServiceInterface {
936936 return captureElapsedTime (() async {
937937 await isInitialized;
938938 return _vm;
939- }, (result) => DwdsEvent .getVM (), );
939+ }, (result) => DwdsEvent .getVM ());
940940 }
941941
942942 @override
@@ -1159,7 +1159,7 @@ class ChromeProxyService implements VmServiceInterface {
11591159 step: step,
11601160 frameIndex: frameIndex,
11611161 );
1162- }, (result) => DwdsEvent .resume (step), );
1162+ }, (result) => DwdsEvent .resume (step));
11631163 } else {
11641164 inspector.appConnection.runMain ();
11651165 return Success ();
0 commit comments