Skip to content

Commit 951e72b

Browse files
committed
revert changes to callFunction
1 parent 72d198a commit 951e72b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

dwds/lib/src/debugging/inspector.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,10 +373,9 @@ class AppInspector implements AppInspectorInterface {
373373
Future<RemoteObject> callFunction(
374374
String function,
375375
Iterable<String> argumentIds,
376-
) async {
376+
) {
377377
final arguments = argumentIds.map(remoteObjectFor).toList();
378-
final result = await _jsCallFunction(function, arguments);
379-
return result;
378+
return _jsCallFunction(function, arguments);
380379
}
381380

382381
@override

0 commit comments

Comments
 (0)