Update jsruntime + fix breaking changes

Signed-off-by: Francis Bouvier <francis.bouvier@gmail.com>
This commit is contained in:
Francis Bouvier
2023-10-23 13:03:39 +02:00
parent 17f4711baa
commit 3c5f1b89e7
5 changed files with 10 additions and 9 deletions

View File

@@ -50,7 +50,7 @@ fn execJS(
pub fn main() !void {
// generate APIs
const apis = jsruntime.compile(DOM.Interfaces);
const apis = try jsruntime.compile(DOM.Interfaces);
// create v8 vm
const vm = jsruntime.VM.init();