diff options
Diffstat (limited to 'core/extensions.rs')
-rw-r--r-- | core/extensions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/extensions.rs b/core/extensions.rs index a8b52eb3b..ff86fec64 100644 --- a/core/extensions.rs +++ b/core/extensions.rs @@ -349,6 +349,7 @@ macro_rules! extension { #[derive(Default)] pub struct Extension { + pub(crate) name: &'static str, js_files: Option<Vec<ExtensionFileSource>>, esm_files: Option<Vec<ExtensionFileSource>>, esm_entry_point: Option<&'static str>, @@ -358,7 +359,6 @@ pub struct Extension { event_loop_middleware: Option<Box<OpEventLoopFn>>, initialized: bool, enabled: bool, - name: &'static str, deps: Option<&'static [&'static str]>, force_op_registration: bool, pub(crate) is_core: bool, |