Commit f1642ce1 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

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

parent dc2133cc
...@@ -73,7 +73,7 @@ static const struct { ...@@ -73,7 +73,7 @@ static const struct {
{breakW, kBREAK, TRUE}, {breakW, kBREAK, TRUE},
{caseW, kCASE}, {caseW, kCASE},
{catchW, kCATCH}, {catchW, kCATCH},
{continueW, kCONTINUE}, {continueW, kCONTINUE, TRUE},
{defaultW, kDEFAULT}, {defaultW, kDEFAULT},
{deleteW, kDELETE}, {deleteW, kDELETE},
{doW, kDO}, {doW, kDO},
......
...@@ -1372,6 +1372,12 @@ while(true) { ...@@ -1372,6 +1372,12 @@ while(true) {
tmp = false tmp = false
} }
while(true) {
break
continue
tmp = false
}
/* Keep this test in the end of file */ /* Keep this test in the end of file */
undefined = 6; undefined = 6;
ok(undefined === 6, "undefined = " + undefined); ok(undefined === 6, "undefined = " + undefined);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment