Skip to content

Commit 66c87f8

Browse files
committed
formatted code
1 parent 7fb5cda commit 66c87f8

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

dwds/lib/src/debugging/instance.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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,

dwds/lib/src/debugging/metadata/class.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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,

dwds/lib/src/debugging/metadata/function.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)