mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
437 B
24 lines
437 B
/*
|
|
* Arguments binding cannot be directly accessed from an inner function as
|
|
* there is already some binding in the inner function which prevents the
|
|
* access. However, it can be accessed indirectly.
|
|
*/
|
|
|
|
/*===
|
|
foo bar quux
|
|
===*/
|
|
|
|
function f() {
|
|
var foo = arguments;
|
|
function g() {
|
|
print(foo[0], foo[1], foo[2]);
|
|
}
|
|
return g;
|
|
}
|
|
|
|
try {
|
|
t = f('foo', 'bar', 'quux');
|
|
t();
|
|
} catch (e) {
|
|
print(e);
|
|
}
|
|
|