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.

19 lines
281 B

/*
* For-in statement (E5 Section 12.6.4).
*/
/*===
SyntaxError
===*/
try {
/* 'a+b' is not a valid LeftHandSideExpression -> SyntaxError required */
eval("for (a+b in [0,1]) {}");
print("never here");
} catch (e) {
print(e.name);
}
/* FIXME: other tests */