@@ -623,6 +623,11 @@ ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").developer.
623
623
Map <String , String >? scope,
624
624
// TODO(798) - respect disableBreakpoints.
625
625
bool ? disableBreakpoints,
626
+
627
+ /// Note that `idZoneId` arguments will be ignored. This parameter is only
628
+ /// here to make this method is a valid override of
629
+ /// [VmServiceInterface.evaluate] .
630
+ String ? idZoneId,
626
631
}) =>
627
632
wrapInErrorHandlerAsync (
628
633
'evaluate' ,
@@ -716,6 +721,11 @@ ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").developer.
716
721
Map <String , String >? scope,
717
722
// TODO(798) - respect disableBreakpoints.
718
723
bool ? disableBreakpoints,
724
+
725
+ /// Note that `idZoneId` arguments will be ignored. This parameter is only
726
+ /// here to make this method is a valid override of
727
+ /// [VmServiceInterface.evaluateInFrame] .
728
+ String ? idZoneId,
719
729
}) =>
720
730
wrapInErrorHandlerAsync (
721
731
'evaluateInFrame' ,
@@ -805,6 +815,7 @@ ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").developer.
805
815
int limit, {
806
816
bool ? includeImplementers,
807
817
bool ? includeSubclasses,
818
+ String ? idZoneId,
808
819
}) {
809
820
return _rpcNotSupportedFuture ('getInstances' );
810
821
}
@@ -845,6 +856,11 @@ ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").developer.
845
856
String objectId, {
846
857
int ? offset,
847
858
int ? count,
859
+
860
+ /// Note that `idZoneId` arguments will be ignored. This parameter is only
861
+ /// here to make this method is a valid override of
862
+ /// [VmServiceInterface.getObject] .
863
+ String ? idZoneId,
848
864
}) =>
849
865
wrapInErrorHandlerAsync (
850
866
'getObject' ,
@@ -946,7 +962,15 @@ ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").developer.
946
962
///
947
963
/// The returned stack will contain up to [limit] frames if provided.
948
964
@override
949
- Future <Stack > getStack (String isolateId, {int ? limit}) =>
965
+ Future <Stack > getStack (
966
+ String isolateId, {
967
+ int ? limit,
968
+
969
+ /// Note that `idZoneId` arguments will be ignored. This parameter is only
970
+ /// here to make this method is a valid override of
971
+ /// [VmServiceInterface.getStack] .
972
+ String ? idZoneId,
973
+ }) =>
950
974
wrapInErrorHandlerAsync (
951
975
'getStack' ,
952
976
() => _getStack (isolateId, limit: limit),
@@ -1002,6 +1026,11 @@ ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").developer.
1002
1026
List argumentIds, {
1003
1027
// TODO(798) - respect disableBreakpoints.
1004
1028
bool ? disableBreakpoints,
1029
+
1030
+ /// Note that `idZoneId` arguments will be ignored. This parameter is only
1031
+ /// here to make this method is a valid override of
1032
+ /// [VmServiceInterface.invoke] .
1033
+ String ? idZoneId,
1005
1034
}) =>
1006
1035
wrapInErrorHandlerAsync (
1007
1036
'invoke' ,
@@ -1591,17 +1620,19 @@ ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").developer.
1591
1620
Future <InboundReferences > getInboundReferences (
1592
1621
String isolateId,
1593
1622
String targetId,
1594
- int limit,
1595
- ) {
1623
+ int limit, {
1624
+ String ? idZoneId,
1625
+ }) {
1596
1626
return _rpcNotSupportedFuture ('getInboundReferences' );
1597
1627
}
1598
1628
1599
1629
@override
1600
1630
Future <RetainingPath > getRetainingPath (
1601
1631
String isolateId,
1602
1632
String targetId,
1603
- int limit,
1604
- ) {
1633
+ int limit, {
1634
+ String ? idZoneId,
1635
+ }) {
1605
1636
return _rpcNotSupportedFuture ('getRetainingPath' );
1606
1637
}
1607
1638
0 commit comments