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.
41 lines
544 B
41 lines
544 B
|
|
/*===
|
|
0 foo
|
|
1 bar
|
|
0 foo
|
|
1 bar
|
|
0 foo
|
|
1 bar
|
|
===*/
|
|
|
|
/* g() used to be broken: local_iter would not get assigned to as a
|
|
* left-hand side if it was a register-bound variable.
|
|
*/
|
|
|
|
var arr = ['foo', 'bar'];
|
|
|
|
function f() {
|
|
for (global_iter in arr) {
|
|
print(global_iter, arr[global_iter]);
|
|
}
|
|
}
|
|
|
|
function g() {
|
|
var local_iter;
|
|
|
|
for (local_iter in arr) {
|
|
print(local_iter, arr[local_iter]);
|
|
}
|
|
}
|
|
|
|
function h() {
|
|
for (var local_iter in arr) {
|
|
print(local_iter, arr[local_iter]);
|
|
}
|
|
}
|
|
|
|
|
|
f();
|
|
g();
|
|
h();
|
|
|
|
|