diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-05-12 19:06:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-12 19:06:42 +0200 |
commit | 5e6d3d42c7e0dc6173d726c8c7ebef8a94a6f65a (patch) | |
tree | fdb01df995cb22b149ece55917c5aa956bd6f502 /core/extensions.rs | |
parent | 89b428234c73d66db4a8fca4d9623fd823c6428e (diff) |
feat(ops): #[op(v8)] (#14582)
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 94453a6e2..6dd2270fc 100644 --- a/core/extensions.rs +++ b/core/extensions.rs @@ -17,6 +17,7 @@ pub struct OpDecl { pub enabled: bool, pub is_async: bool, // TODO(@AaronO): enum sync/async/fast ? pub is_unstable: bool, + pub is_v8: bool, } impl OpDecl { |