Skip to content

Commit

Permalink
fix: fixes #117, unclosed characters in inline comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Sep 26, 2018
1 parent b8be266 commit b48b16b
Show file tree
Hide file tree
Showing 4 changed files with 566 additions and 432 deletions.
2 changes: 1 addition & 1 deletion lib/nodes/inline-comment.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
bits.push(token[1]);
last = token;
// eslint-disable-next-line no-param-reassign
token = this.tokenizer.nextToken();
token = this.tokenizer.nextToken({ ignoreUnclosed: true });
}

if (token) {
Expand Down
Loading

0 comments on commit b48b16b

Please sign in to comment.