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 b86c2be commit 87662d7Copy full SHA for 87662d7
dwds/lib/src/debugging/inspector.dart
@@ -215,7 +215,7 @@ class AppInspector implements AppInspectorInterface {
215
// We use the JS pseudo-variable 'arguments' to get the list of all arguments.
216
final send = '''
217
function () {
218
- if (!(Object.getPrototypeOf(this))) { return 'Instance of PlainJavaScriptObject';}
+ if (!Object.getPrototypeOf(this)) { return 'Instance of PlainJavaScriptObject';}
219
return ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").dart.dsendRepl(this, "$methodName", arguments);
220
}
221
''';
0 commit comments