File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -772,10 +772,9 @@ class InstanceHelper extends Domain {
772772 //
773773 // For maps and lists it's more complicated. Treat the actual SDK versions
774774 // of these as special.
775- final fieldNameExpression =
776- globalToolConfiguration
775+ final fieldNameExpression = globalToolConfiguration
777776 .loadStrategy.dartRuntimeDebugger
778- .getObjectFieldNamesJsExpression ();
777+ .getObjectFieldNamesJsExpression ();
779778 final result = await inspector.jsCallFunctionOn (
780779 remoteObject,
781780 fieldNameExpression,
Original file line number Diff line number Diff line change @@ -152,10 +152,9 @@ class ClassMetaDataHelper {
152152 /// Returns null if the [remoteObject] is not a Dart class.
153153 Future <ClassMetaData ?> metaDataFor (RemoteObject remoteObject) async {
154154 try {
155- final evalExpression =
156- globalToolConfiguration
155+ final evalExpression = globalToolConfiguration
157156 .loadStrategy.dartRuntimeDebugger
158- .getObjectMetadataJsExpression ();
157+ .getObjectMetadataJsExpression ();
159158
160159 final result = await _inspector.jsCallFunctionOn (
161160 remoteObject,
Original file line number Diff line number Diff line change @@ -17,10 +17,9 @@ class FunctionMetaData {
1717 RemoteDebugger remoteDebugger,
1818 RemoteObject remoteObject,
1919 ) async {
20- final evalExpression =
21- globalToolConfiguration
20+ final evalExpression = globalToolConfiguration
2221 .loadStrategy.dartRuntimeDebugger
23- .getFunctionMetadataJsExpression ();
22+ .getFunctionMetadataJsExpression ();
2423
2524 final response = await remoteDebugger.sendCommand (
2625 'Runtime.callFunctionOn' ,
You can’t perform that action at this time.
0 commit comments