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 {
{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);
......
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