We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d198a commit 951e72bCopy full SHA for 951e72b
dwds/lib/src/debugging/inspector.dart
@@ -373,10 +373,9 @@ class AppInspector implements AppInspectorInterface {
373
Future<RemoteObject> callFunction(
374
String function,
375
Iterable<String> argumentIds,
376
- ) async {
+ ) {
377
final arguments = argumentIds.map(remoteObjectFor).toList();
378
- final result = await _jsCallFunction(function, arguments);
379
- return result;
+ return _jsCallFunction(function, arguments);
380
}
381
382
@override
0 commit comments