Skip to content

Commit 90f3de0

Browse files
dcharkescommit-bot@chromium.org
authored andcommitted
[vm/ffi] Mark dart:ffi as stable
Closes: #34452 We will still actively adding new features to `dart:ffi`. Please refer to https://github.com/dart-lang/sdk/labels/library-ffi for open issues and feature requests. Related documentation PRs: - dart-lang/site-www#2873 - flutter/website#5195 Change-Id: I59a23e462c859da5dcd2e5548fb6fe295c5d8532 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/179765 Commit-Queue: Daco Harkes <[email protected]> Reviewed-by: Michael Thomsen <[email protected]>
1 parent f05f5ad commit 90f3de0

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,7 @@ const Map<String, LibraryInfo> libraries = const {
6464
maturity: Maturity.UNSTABLE,
6565
dart2jsPatchPath: "_internal/js_runtime/lib/developer_patch.dart"),
6666
"ffi": const LibraryInfo("ffi/ffi.dart",
67-
categories: "Server",
68-
// TODO(dacoharkes): Update maturity when we release dart:ffi.
69-
// https://github.com/dart-lang/sdk/issues/34452
70-
maturity: Maturity.EXPERIMENTAL),
67+
categories: "Server", maturity: Maturity.STABLE),
7168
"html": const LibraryInfo("html/dart2js/html_dart2js.dart",
7269
categories: "Client",
7370
maturity: Maturity.WEB_STABLE,

sdk/lib/ffi/ffi.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
/**
66
* Foreign Function Interface for interoperability with the C programming language.
77
*
8-
* **NOTE**: Dart:FFI is in beta, and breaking API changes might still happen.
9-
*
108
* For further details, please see: https://dart.dev/server/c-interop
119
*
1210
* {@category VM}

0 commit comments

Comments
 (0)