jscript: Added support for no new line between continue and identifier rule.
This commit is contained in:
parent
dc2133cc66
commit
f1642ce1fc
|
@ -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},
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue