File tree Expand file tree Collapse file tree 5 files changed +17
-6
lines changed Expand file tree Collapse file tree 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+
16## 11.2.1
27
38- 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 {
160160 name: name,
161161 owner: classRef,
162162 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 ));
164167 });
165168 var fieldRefs = < FieldRef > [];
166169 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 {
414414 // TODO(alanknight): The right ClassRef
415415 owner: classRefForUnknown,
416416 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 )
418421 ..closureContext = (ContextRef (length: 0 , id: createId ()));
419422 default :
420423 // Return null for an unsupported type. This is likely a JS construct.
Original file line number Diff line number Diff line change 11name : dwds
22# Every time this changes you need to run `pub run build_runner build`.
3- version : 11.2.1
3+ version : 11.2.2
44homepage : https://github.com/dart-lang/webdev/tree/master/dwds
55description : >-
66 A service that proxies between the Chrome debug protocol and the Dart VM
@@ -14,7 +14,7 @@ dependencies:
1414 built_collection : ^5.0.0
1515 built_value : ' >=6.7.0 <9.0.0'
1616 crypto : ' >=2.0.6 <4.0.0'
17- dds : ^2.0.0
17+ dds : ^2.1.1
1818 http : ' >=0.12.0 <0.14.0'
1919 http_multi_server : ^3.0.0
2020 logging : ' >=0.11.3 <2.0.0'
@@ -32,7 +32,7 @@ dependencies:
3232 source_maps : ^0.10.0
3333 sse : ^4.1.0
3434 # We pin the version because we implement the interface.
35- vm_service : 7.1.1
35+ vm_service : 7.2.0
3636 web_socket_channel : ^2.0.0
3737 webkit_inspection_protocol : ^1.0.0
3838
You can’t perform that action at this time.
0 commit comments