This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
sdk/lib/_internal/js_dev_runtime/patch Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1+ ## 0.6.6-dev
2+
3+ * Add ` @JSExport ` annotation for exporting Dart classes and ` @staticInterop `
4+ mocking.
5+ * Require Dart 2.19
6+
17## 0.6.5
28
39* Populate the pubspec repository field.
410* Add a dependency on ` package:meta ` .
511* Add an experimental ` @trustTypes ` annotation.
6- * Add ` @JSExport ` annotation for exporting Dart classes and ` @staticInterop `
7- mocking.
812
913## 0.6.4
1014
Original file line number Diff line number Diff line change 11name : js
2- version : 0.6.5
2+ version : 0.6.6-dev
33description : Annotations to create static Dart interfaces for JavaScript APIs.
44repository : https://github.com/dart-lang/sdk/tree/main/pkg/js
55
66environment :
7- sdk : " >=2.16 .0-100 .0.dev <3.0.0"
7+ sdk : " >=2.19 .0-333 .0.dev <3.0.0"
88
99dependencies :
1010 meta : ^1.7.0
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import 'dart:_runtime' as dart;
2222/// Inspired by `co` : https://github.com/tj/co/blob/master/index.js, which is a
2323/// stepping stone for ES async/await.
2424@JSExportName ('async' )
25- @ReifyFunctionTypes (false )
2625_async <T >(Function () initGenerator) {
2726 var iter;
2827 late Object ? Function (Object ? ) onValue;
Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ CHANNEL dev
2727MAJOR 2
2828MINOR 19
2929PATCH 0
30- PRERELEASE 339
30+ PRERELEASE 340
3131PRERELEASE_PATCH 0
You can’t perform that action at this time.
0 commit comments