mirror of
https://github.com/DoneJS-Runtime/quickjs-done-nextgen.git
synced 2025-01-09 17:43:15 +00:00
Merge branch 'quickjs-ng:master' into master
This commit is contained in:
commit
86e6084fa9
2 changed files with 6 additions and 0 deletions
|
@ -26,3 +26,7 @@ JavaScript runtime for Nintendo Switch homebrew applications.
|
||||||
## [quickjs-rusty](https://github.com/Icemic/quickjs-rusty)
|
## [quickjs-rusty](https://github.com/Icemic/quickjs-rusty)
|
||||||
|
|
||||||
Rust wrapper focus on embedding-ready and no-pain type conversion and interoperability.
|
Rust wrapper focus on embedding-ready and no-pain type conversion and interoperability.
|
||||||
|
|
||||||
|
## [GodotJS](https://github.com/godotjs/GodotJS)
|
||||||
|
|
||||||
|
This project adds TypeScript/JavaScript support for Godot 4.x. It supports multiple javascript runtimes, including QuicJS-NG.
|
||||||
|
|
|
@ -1542,11 +1542,13 @@ static int unicode_prop_ops(CharRange *cr, ...)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
done:
|
done:
|
||||||
|
va_end(ap);
|
||||||
assert(stack_len == 1);
|
assert(stack_len == 1);
|
||||||
ret = cr_copy(cr, &stack[0]);
|
ret = cr_copy(cr, &stack[0]);
|
||||||
cr_free(&stack[0]);
|
cr_free(&stack[0]);
|
||||||
return ret;
|
return ret;
|
||||||
fail:
|
fail:
|
||||||
|
va_end(ap);
|
||||||
for(i = 0; i < stack_len; i++)
|
for(i = 0; i < stack_len; i++)
|
||||||
cr_free(&stack[i]);
|
cr_free(&stack[i]);
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in a new issue