Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle void object case #23

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ function isExpressionPunctuator (ch) {

function isExpressionTerminator (curPos) {
// detects:
// => ; ) finally catch else
// => ; ) finally catch else void
// as all of these followed by a { will indicate a statement brace
switch (source.charCodeAt(curPos)) {
case 62/*>*/:
Expand All @@ -1228,6 +1228,8 @@ function isExpressionTerminator (curPos) {
return source.startsWith('finall', curPos - 6);
case 101/*e*/:
return source.startsWith('els', curPos - 3);
case 100/*d*/:
return source.startsWith('voi', curPos - 3);
}
return false;
}
4 changes: 3 additions & 1 deletion src/lexer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ bool isExpressionPunctuator (uint16_t ch) {

bool isExpressionTerminator (uint16_t* curPos) {
// detects:
// > ; ) -1 finally catch
// > ; ) -1 finally catch void
// as all of these followed by a { will indicate a statement brace
switch (*curPos) {
case '>':
Expand All @@ -1316,6 +1316,8 @@ bool isExpressionTerminator (uint16_t* curPos) {
return readPrecedingKeyword6(curPos - 1, 'f', 'i', 'n', 'a', 'l', 'l');
case 'e':
return readPrecedingKeyword3(curPos - 1, 'e', 'l', 's');
case 'd':
return readPrecedingKeyword3(curPos - 1, 'v', 'o', 'i');
}
return false;
}
Expand Down
15 changes: 15 additions & 0 deletions test/_unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,21 @@ function x() {
assert.ok(parse(source));
});

test('Void case', () => {
var { exports } = parse(`
void {
x: []
} / "/ //" /*

/*/

module.exports.foo = 2;

// */
`);
assert.equal(exports.length, 0);
});

test('Template string expression ambiguity', () => {
const source = `
\`$\`
Expand Down