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
8ba0d1b
Ubuntu 18.04.5 LTS (Linux 4.15.0-128-generic x86_64)
./tools/build.py --clean --debug --logging=on
function* g() { class A extends (yield) {} } g().next();
$ ./build/bin/jerry test.js ICE: Assertion 'ECMA_STRING_IS_REF_EQUALS_TO_ONE (string_p)' failed at jerryscript/jerry-core/ecma/base/ecma-literal-storage.c(ecma_free_string_list):77. Error: ERR_FAILED_INTERNAL_ASSERTION Aborted (core dumped)
The text was updated successfully, but these errors were encountered:
Note: It is a mem leak, still valid today on 2a82da6
Sorry, something went wrong.
Let me summarize what we know about this issue:
When g().next(); is called:
g().next();
class A extends (yield) {}
yield
undefined
.next()
g
{ value: undefined, done: false }
next()
done: false
At this point:
class A
.next(SomeClass)
A fix might be similar to #5014
No branches or pull requests
JerryScript revision
8ba0d1b
Build platform
Ubuntu 18.04.5 LTS (Linux 4.15.0-128-generic x86_64)
Build steps
Test case
Execution steps & output
The text was updated successfully, but these errors were encountered: