File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ kind : Fixed
2+ body : Corrected `VM` method signatures `runInContext`, `runInNewContext` and `runInThisContext`
3+ time : 2024-01-24T12:11:24.898655+11:00
4+ custom :
5+ GithubIssue : " 23"
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ module Script = {
2525 external makeWithOptions : (string , options ) => t = "Script"
2626 @send external createCachedData : t => Buffer .t = "createCachedData"
2727 @send
28- external runInContext : (t , string , contextifiedObject <'a >) => 'b = "runInContext"
28+ external runInContext : (t , contextifiedObject <'a >) => 'b = "runInContext"
2929 @send
30- external runInNewContext : (t , string , contextifiedObject <'a >) => 'b = "runInNewContext"
31- @send external runInThisContext : ( t , string ) => 'a = "runInThisContext"
30+ external runInNewContext : (t , contextifiedObject <'a >) => 'b = "runInNewContext"
31+ @send external runInThisContext : t => 'a = "runInThisContext"
3232}
You can’t perform that action at this time.
0 commit comments