@@ -580,6 +580,7 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
580
580
String targetId,
581
581
String expression, {
582
582
Map <String , String >? scope,
583
+ // TODO(798) - respect disableBreakpoints.
583
584
bool ? disableBreakpoints,
584
585
}) =>
585
586
wrapInErrorHandlerAsync (
@@ -589,7 +590,6 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
589
590
targetId,
590
591
expression,
591
592
scope: scope,
592
- disableBreakpoints: disableBreakpoints,
593
593
),
594
594
);
595
595
@@ -598,7 +598,6 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
598
598
String targetId,
599
599
String expression, {
600
600
Map <String , String >? scope,
601
- bool ? disableBreakpoints,
602
601
}) {
603
602
// TODO(798) - respect disableBreakpoints.
604
603
return captureElapsedTime (
@@ -637,6 +636,7 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
637
636
int frameIndex,
638
637
String expression, {
639
638
Map <String , String >? scope,
639
+ // TODO(798) - respect disableBreakpoints.
640
640
bool ? disableBreakpoints,
641
641
}) =>
642
642
wrapInErrorHandlerAsync (
@@ -646,7 +646,6 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
646
646
frameIndex,
647
647
expression,
648
648
scope: scope,
649
- disableBreakpoints: disableBreakpoints,
650
649
),
651
650
);
652
651
@@ -655,7 +654,6 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
655
654
int frameIndex,
656
655
String expression, {
657
656
Map <String , String >? scope,
658
- bool ? disableBreakpoints,
659
657
}) {
660
658
// TODO(798) - respect disableBreakpoints.
661
659
@@ -908,6 +906,7 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
908
906
String targetId,
909
907
String selector,
910
908
List argumentIds, {
909
+ // TODO(798) - respect disableBreakpoints.
911
910
bool ? disableBreakpoints,
912
911
}) =>
913
912
wrapInErrorHandlerAsync (
@@ -917,20 +916,17 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
917
916
targetId,
918
917
selector,
919
918
argumentIds,
920
- disableBreakpoints: disableBreakpoints,
921
919
),
922
920
);
923
921
924
922
Future <Response > _invoke (
925
923
String isolateId,
926
924
String targetId,
927
925
String selector,
928
- List argumentIds, {
929
- bool ? disableBreakpoints,
930
- }) async {
926
+ List argumentIds,
927
+ ) async {
931
928
await isInitialized;
932
929
_checkIsolate ('invoke' , isolateId);
933
- // TODO(798) - respect disableBreakpoints.
934
930
final remote = await inspector.invoke (targetId, selector, argumentIds);
935
931
return _instanceRef (remote);
936
932
}
@@ -1001,14 +997,13 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
1001
997
}) =>
1002
998
wrapInErrorHandlerAsync (
1003
999
'lookupResolvedPackageUris' ,
1004
- () => _lookupResolvedPackageUris (isolateId, uris, local : local ),
1000
+ () => _lookupResolvedPackageUris (isolateId, uris),
1005
1001
);
1006
1002
1007
1003
Future <UriList > _lookupResolvedPackageUris (
1008
1004
String isolateId,
1009
- List <String > uris, {
1010
- bool ? local,
1011
- }) async {
1005
+ List <String > uris,
1006
+ ) async {
1012
1007
await isInitialized;
1013
1008
_checkIsolate ('lookupResolvedPackageUris' , isolateId);
1014
1009
return UriList (uris: uris.map (DartUri .toResolvedUri).toList ());
@@ -1140,24 +1135,22 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
1140
1135
Future <Success > setIsolatePauseMode (
1141
1136
String isolateId, {
1142
1137
String ? exceptionPauseMode,
1138
+ // TODO(elliette): Is there a way to respect the shouldPauseOnExit parameter
1139
+ // in Chrome?
1143
1140
bool ? shouldPauseOnExit,
1144
1141
}) =>
1145
1142
wrapInErrorHandlerAsync (
1146
1143
'setIsolatePauseMode' ,
1147
1144
() => _setIsolatePauseMode (
1148
1145
isolateId,
1149
1146
exceptionPauseMode: exceptionPauseMode,
1150
- shouldPauseOnExit: shouldPauseOnExit,
1151
1147
),
1152
1148
);
1153
1149
1154
1150
Future <Success > _setIsolatePauseMode (
1155
1151
String isolateId, {
1156
1152
String ? exceptionPauseMode,
1157
- bool ? shouldPauseOnExit,
1158
1153
}) async {
1159
- // TODO(elliette): Is there a way to respect the shouldPauseOnExit parameter
1160
- // in Chrome?
1161
1154
await isInitialized;
1162
1155
_checkIsolate ('setIsolatePauseMode' , isolateId);
1163
1156
return (await debuggerFuture)
0 commit comments