File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ export interface RuntimeInterface {
1111 $t : Thread ;
1212 $service : any ; // todo 2021-06-13; identify what the right interface here should be
1313 debug ( arg0 : string ) ;
14+ __userRuntime : any
1415 __sched : SchedulerInterface
1516 __mbox : MailboxInterface
1617 sendMessageNoChecks ( toPid : any , message : LVal , arg2 ?: boolean ) : any ;
Original file line number Diff line number Diff line change @@ -19,9 +19,8 @@ if (!fs.existsSync(p)) {
1919}
2020( async ( ) => {
2121 let d = await import ( p ) ;
22- let Top = d . default
23- let __userRuntime = ( getRuntimeObject ( ) as any ) . __userRuntime ;
24- let top = new Top ( __userRuntime ) ;
22+ let Top = d . default ;
23+ let top = new Top ( getRuntimeObject ( ) . __userRuntime ) ;
2524 start ( top ) ;
2625
2726} ) ( )
You can’t perform that action at this time.
0 commit comments