We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d38b7c0 commit 3d904bbCopy full SHA for 3d904bb
lib/nodes/inline-comment.js
@@ -20,9 +20,8 @@ module.exports = {
20
remainingInput += this.input.css.valueOf().substring(this.tokenizer.position());
21
22
// Replace tokenizer to retokenize the rest of the string
23
- const newInput = new Input(remainingInput);
24
- this.input = newInput;
25
- this.tokenizer = tokenizer(newInput);
+ this.input = new Input(remainingInput);
+ this.tokenizer = tokenizer(this.input);
26
} else {
27
// If the tokenizer went to the next line go back
28
this.tokenizer.back(token);
0 commit comments