File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -60,16 +60,6 @@ Future<List<Property>> visibleVariables({
60
60
final objectId = scope.object.objectId;
61
61
if (objectId != null ) {
62
62
final properties = await inspector.getProperties (objectId);
63
- for (final property in properties) {
64
- if (property.name == '_\$ 35wc2\$ 35formal' ) {
65
- final newProperty = Property ({
66
- 'name' : '_' ,
67
- 'value' : property.value,
68
- });
69
- properties.remove (property);
70
- properties.add (newProperty);
71
- }
72
- }
73
63
allProperties.addAll (properties);
74
64
}
75
65
}
Original file line number Diff line number Diff line change @@ -1555,7 +1555,9 @@ void runTests({
1555
1555
expect (first.vars, hasLength (greaterThanOrEqualTo (1 )));
1556
1556
final underscore = first.vars! .firstWhere ((v) => v.name == '_' );
1557
1557
expect (underscore, isNotNull);
1558
- });
1558
+ },
1559
+ skip: 'https://github.com/dart-lang/webdev/issues/2570' ,
1560
+ );
1559
1561
1560
1562
test ('collects async frames' , () async {
1561
1563
final stack = await breakAt ('asyncCall' );
You can’t perform that action at this time.
0 commit comments