We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there, qjs throws an error InternalError: unconsistent stack size: 2 3 (pc=45) on the following case:
function* test() { try { if(0 == (yield 1)) return; } finally { return; } } test();
but it seems ok if the case is:
function* test() { try { if((yield 1) == 0) return; } finally { return; } } test();
How can I fix this unconsistent stack size error?
Best regards and thanks for the great work.
The text was updated successfully, but these errors were encountered:
fixed (see issue #166)
Sorry, something went wrong.
No branches or pull requests
Hi there, qjs throws an error InternalError: unconsistent stack size: 2 3 (pc=45) on the following case:
but it seems ok if the case is:
How can I fix this unconsistent stack size error?
Best regards and thanks for the great work.
The text was updated successfully, but these errors were encountered: