jscript: Added support for no new line between continue and identifier rule.

oldstable
Jacek Caban 2012-09-10 14:45:06 +02:00 committed by Alexandre Julliard
parent dc2133cc66
commit f1642ce1fc
2 changed files with 7 additions and 1 deletions

View File

@ -73,7 +73,7 @@ static const struct {
{breakW, kBREAK, TRUE},
{caseW, kCASE},
{catchW, kCATCH},
{continueW, kCONTINUE},
{continueW, kCONTINUE, TRUE},
{defaultW, kDEFAULT},
{deleteW, kDELETE},
{doW, kDO},

View File

@ -1372,6 +1372,12 @@ while(true) {
tmp = false
}
while(true) {
break
continue
tmp = false
}
/* Keep this test in the end of file */
undefined = 6;
ok(undefined === 6, "undefined = " + undefined);