@@ -131,7 +131,8 @@ impl Default for RuntimeOptions {
131
131
pub struct InnerRuntime {
132
132
pub module_loader : Rc < RustyLoader > ,
133
133
pub deno_runtime : JsRuntime ,
134
- pub options : RuntimeOptions ,
134
+
135
+ pub default_entrypoint : Option < String > ,
135
136
}
136
137
impl InnerRuntime {
137
138
pub fn new ( options : RuntimeOptions ) -> Result < Self , Error > {
@@ -156,7 +157,7 @@ impl InnerRuntime {
156
157
157
158
source_map_getter : Some ( module_loader. clone ( ) ) ,
158
159
create_params : options. isolate_params ,
159
- shared_array_buffer_store : options. shared_array_buffer_store ,
160
+ shared_array_buffer_store : options. shared_array_buffer_store . clone ( ) ,
160
161
161
162
startup_snapshot : options. startup_snapshot ,
162
163
extensions,
@@ -167,11 +168,8 @@ impl InnerRuntime {
167
168
Ok ( Self {
168
169
deno_runtime,
169
170
module_loader,
170
- options : RuntimeOptions {
171
- timeout : options. timeout ,
172
- default_entrypoint : options. default_entrypoint ,
173
- ..Default :: default ( )
174
- } ,
171
+
172
+ default_entrypoint : options. default_entrypoint ,
175
173
} )
176
174
}
177
175
@@ -470,8 +468,9 @@ impl InnerRuntime {
470
468
pub fn get_module_entrypoint (
471
469
& mut self ,
472
470
module_context : & mut ModuleHandle ,
473
- default : Option < & str > ,
474
471
) -> Result < Option < v8:: Global < v8:: Function > > , Error > {
472
+ let default = self . default_entrypoint . clone ( ) ;
473
+
475
474
// Try to get an entrypoint from a call to `rustyscript.register_entrypoint` first
476
475
let state = self . deno_runtime . op_state ( ) ;
477
476
let mut deep_state = state. try_borrow_mut ( ) ?;
@@ -492,7 +491,7 @@ impl InnerRuntime {
492
491
}
493
492
494
493
// Try to get an entrypoint from the default entrypoint
495
- if let Some ( default) = default {
494
+ if let Some ( default) = default. as_deref ( ) {
496
495
if let Ok ( f) = self . get_function_by_name ( Some ( module_context) , default) {
497
496
return Ok ( Some ( f) ) ;
498
497
}
@@ -512,8 +511,6 @@ impl InnerRuntime {
512
511
main_module : Option < & Module > ,
513
512
side_modules : Vec < & Module > ,
514
513
) -> Result < ModuleHandle , Error > {
515
- let default_entrypoint = self . options . default_entrypoint . clone ( ) ;
516
-
517
514
if main_module. is_none ( ) && side_modules. is_empty ( ) {
518
515
return Err ( Error :: Runtime (
519
516
"Internal error: attempt to load no modules" . to_string ( ) ,
@@ -579,8 +576,7 @@ impl InnerRuntime {
579
576
}
580
577
581
578
// Try to get the default entrypoint
582
- let entrypoint =
583
- self . get_module_entrypoint ( & mut module_handle_stub, default_entrypoint. as_deref ( ) ) ?;
579
+ let entrypoint = self . get_module_entrypoint ( & mut module_handle_stub) ?;
584
580
585
581
Ok ( ModuleHandle :: new (
586
582
module_handle_stub. module ( ) ,
0 commit comments