diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-04-02 00:09:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-02 00:09:21 +0200 |
commit | 25b6b2ed66c001143811efb8b65407b4803e65c4 (patch) | |
tree | 98a629f164f341409f3096df009c4ba93f2613c0 /core/extensions.rs | |
parent | 1535fdd94902207bb3a563834700594bb6e8add9 (diff) |
feat(ops): #[op(unstable)] (#14124)
Diffstat (limited to 'core/extensions.rs')
-rw-r--r-- | core/extensions.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/extensions.rs b/core/extensions.rs index 10de66dd2..94453a6e2 100644 --- a/core/extensions.rs +++ b/core/extensions.rs @@ -16,6 +16,7 @@ pub struct OpDecl { pub v8_fn_ptr: OpFnRef, pub enabled: bool, pub is_async: bool, // TODO(@AaronO): enum sync/async/fast ? + pub is_unstable: bool, } impl OpDecl { |