According to the trace, it looks like dwds fails to find a library reference for dart:_runtime during getObject()call for id ("classes|dart:_runtime|_Type")
To solve this properly we need to communicate the list of implicitly imported libraries from dart_sdk to the debugger:
The issue is caused by missing implicit imports: dart-lang/sdk#45477, needs app-level metadata to resolve properly.
Working on a workaround for now (creating the missing metadata manually in the debugger).
See the issue and repro in https://github.com/Dart-Code/Dart-Code/issues/3082
According to the trace, it looks like dwds fails to find a library reference for
dart:_runtime
duringgetObject()
call forid ("classes|dart:_runtime|_Type")
To solve this properly we need to communicate the list of implicitly imported libraries from dart_sdk to the debugger:
Part of: https://github.com/dart-lang/webdev/issues/1290