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 577c943 commit a2669d1Copy full SHA for a2669d1
packages/devtools_app/lib/src/debugger/program_explorer_model.dart
@@ -161,6 +161,10 @@ class VMServiceObjectNode extends TreeNode<VMServiceObjectNode> {
161
}
162
163
for (final clazz in lib.classes) {
164
+ // Don't surface synthetic classes created by mixin applications.
165
+ if (clazz.name.contains('&')) {
166
+ continue;
167
+ }
168
if (clazz.location.script.uri == uri) {
169
final clazzNode = VMServiceObjectNode(
170
controller,
0 commit comments