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
From what I read #797 They use it not directly on arguments but via arguments.callee, so this might be different?
arguments
arguments.callee
function test2() { if(arguments.callee.caller===undefined) { called=true; } else { arguments.callee.caller(true); } }
Is this something that an engine should support or are these tests not correct anymore?
This code is present in at least: test/language/arguments-object/10.6-13-a-2.js test/language/arguments-object/10.6-13-a-3.js
test/language/arguments-object/10.6-13-a-2.js
test/language/arguments-object/10.6-13-a-3.js
The text was updated successfully, but these errors were encountered:
I found that this is a bit different and maybe a duplicate of #674 ?
This also has the flag [caller], however as our engine does need to support the web we probably have to implement it anyway.
[caller]
Sorry, something went wrong.
No branches or pull requests
From what I read #797
They use it not directly on
arguments
but viaarguments.callee
, so this might be different?Is this something that an engine should support or are these tests not correct anymore?
This code is present in at least:
test/language/arguments-object/10.6-13-a-2.js
test/language/arguments-object/10.6-13-a-3.js
The text was updated successfully, but these errors were encountered: