Mark packageConfigSync and resolvePackageUriSync as released in 3.2

Closes https://github.com/dart-lang/sdk/issues/53285

Bug: https://github.com/dart-lang/sdk/issues/53285
CoreLibraryReviewExempt: dart:isolate is only supported on the VM and this CL only changes a Since annotation.
Change-Id: If525aed83d3ccd69558f348e6a4a287a35b1d2ca
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/322040
Reviewed-by: Slava Egorov <vegorov@google.com>
Commit-Queue: Slava Egorov <vegorov@google.com>
This commit is contained in:
Parker Lougheed 2023-08-22 08:05:19 +00:00 committed by Commit Queue
parent 258ad10f30
commit b199896be5
2 changed files with 6 additions and 6 deletions

View file

@ -44,6 +44,10 @@
[#53005]: https://dartbug.com/53005
#### `dart:isolate`
- Added `Isolate.packageConfigSync` and `Isolate.resolvePackageUriSync` APIs.
#### `dart:js_interop`
- **JSNumber.toDart and Object.toJS**:
@ -144,10 +148,6 @@
[#51486]: https://github.com/dart-lang/sdk/issues/51486
[#52027]: https://github.com/dart-lang/sdk/issues/52027
#### `dart:isolate`
- Added `Isolate.packageConfigSync` and `Isolate.resolvePackageUriSync` APIs.
#### `dart:js_interop`
- **Object literal constructors**:

View file

@ -342,7 +342,7 @@ final class Isolate {
/// The package configuration file is usually named `package_config.json`,
/// and you can use [`package:package_config`](https://pub.dev/documentation/package_config/latest/)
/// to read and parse it.
@Since('3.1')
@Since('3.2')
external static Uri? get packageConfigSync;
/// Resolves a `package:` URI to its actual location.
@ -393,7 +393,7 @@ final class Isolate {
/// A program may be run in a way where source files are not available,
/// and if so, the returned URI may not correspond to the actual file or
/// directory or be `null`.
@Since('3.1')
@Since('3.2')
external static Uri? resolvePackageUriSync(Uri packageUri);
/// Creates and spawns an isolate that shares the same code as the current