Merge branch 'do-optional-semicolon' of https://github.com/sebmck/acorn
This commit is contained in:
commit
03891a7f8c
2
acorn.js
2
acorn.js
@ -2027,7 +2027,7 @@
|
||||
labels.pop();
|
||||
expect(_while);
|
||||
node.test = parseParenExpression();
|
||||
semicolon();
|
||||
eat(_semi);
|
||||
return finishNode(node, "DoWhileStatement");
|
||||
}
|
||||
|
||||
|
||||
@ -17911,6 +17911,49 @@ test("do keep(); while (true);", {
|
||||
}
|
||||
});
|
||||
|
||||
test("do {} while (false) foo();", {
|
||||
type: "Program",
|
||||
start: 0,
|
||||
end: 26,
|
||||
body: [
|
||||
{
|
||||
type: "DoWhileStatement",
|
||||
start: 0,
|
||||
end: 19,
|
||||
body: {
|
||||
type: "BlockStatement",
|
||||
start: 3,
|
||||
end: 5,
|
||||
body: []
|
||||
},
|
||||
test: {
|
||||
type: "Literal",
|
||||
start: 13,
|
||||
end: 18,
|
||||
value: false,
|
||||
raw: "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
type: "ExpressionStatement",
|
||||
start: 20,
|
||||
end: 26,
|
||||
expression: {
|
||||
type: "CallExpression",
|
||||
start: 20,
|
||||
end: 25,
|
||||
callee: {
|
||||
type: "Identifier",
|
||||
start: 20,
|
||||
end: 23,
|
||||
name: "foo"
|
||||
},
|
||||
arguments: []
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
test("do { x++; y--; } while (x < 10)", {
|
||||
type: "Program",
|
||||
body: [
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user