File tree 5 files changed +17
-6
lines changed
5 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 11.2.2
2
+
3
+ - Depend on ` dds ` version ` 2.1.1 ` .
4
+ - Depend on ` vm_service ` vesrion ` 7.2.0 ` .
5
+
1
6
## 11.2.1
2
7
3
8
- Recover from used port errors when starting debug service.
Original file line number Diff line number Diff line change @@ -160,7 +160,10 @@ class ClassHelper extends Domain {
160
160
name: name,
161
161
owner: classRef,
162
162
isConst: descriptor['isConst' ] as bool ,
163
- isStatic: descriptor['isStatic' ] as bool ));
163
+ isStatic: descriptor['isStatic' ] as bool ,
164
+ // TODO(annagrin): get information about getters and setters from symbols.
165
+ // https://github.com/dart-lang/sdk/issues/46723
166
+ implicit: false ));
164
167
});
165
168
var fieldRefs = < FieldRef > [];
166
169
var fieldDescriptors = classDescriptor['fields' ] as Map <String , dynamic >;
Original file line number Diff line number Diff line change @@ -414,7 +414,10 @@ class InstanceHelper extends Domain {
414
414
// TODO(alanknight): The right ClassRef
415
415
owner: classRefForUnknown,
416
416
isConst: false ,
417
- isStatic: false )
417
+ isStatic: false ,
418
+ // TODO(annagrin): get information about getters and setters from symbols.
419
+ // https://github.com/dart-lang/sdk/issues/46723
420
+ implicit: false )
418
421
..closureContext = (ContextRef (length: 0 , id: createId ()));
419
422
default :
420
423
// Return null for an unsupported type. This is likely a JS construct.
Original file line number Diff line number Diff line change 1
1
name : dwds
2
2
# Every time this changes you need to run `pub run build_runner build`.
3
- version : 11.2.1
3
+ version : 11.2.2
4
4
homepage : https://github.com/dart-lang/webdev/tree/master/dwds
5
5
description : >-
6
6
A service that proxies between the Chrome debug protocol and the Dart VM
@@ -14,7 +14,7 @@ dependencies:
14
14
built_collection : ^5.0.0
15
15
built_value : ' >=6.7.0 <9.0.0'
16
16
crypto : ' >=2.0.6 <4.0.0'
17
- dds : ^2.0.0
17
+ dds : ^2.1.1
18
18
http : ' >=0.12.0 <0.14.0'
19
19
http_multi_server : ^3.0.0
20
20
logging : ' >=0.11.3 <2.0.0'
@@ -32,7 +32,7 @@ dependencies:
32
32
source_maps : ^0.10.0
33
33
sse : ^4.1.0
34
34
# We pin the version because we implement the interface.
35
- vm_service : 7.1.1
35
+ vm_service : 7.2.0
36
36
web_socket_channel : ^2.0.0
37
37
webkit_inspection_protocol : ^1.0.0
38
38
You can’t perform that action at this time.
0 commit comments