Skip to content

Commit 434d99a

Browse files
committed
Merge pull request #4 from ezequiel/semicolon
The semicolon token should not be respected.
2 parents 729aaf3 + 19d6b4c commit 434d99a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

one_declaration.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"foo:", ["declaration", "foo", [], false],
1313
"foo :", ["declaration", "foo", [], false],
1414
"\n/**/ foo: ", ["declaration", "foo", [" "], false],
15-
"foo:;", ["declaration", "foo", [], false],
15+
"foo:;", ["declaration", "foo", [";"], false],
1616
" /**/ foo /**/ :", ["declaration", "foo", [], false],
17-
"foo:;bar:;", ["error", "extra-input"],
17+
"foo:;bar:;", ["declaration", "foo", [";", ["ident", "bar"], ":", ";"], false],
1818

1919
"foo: 9000 !Important", ["declaration", "foo", [
2020
" ", ["number", "9000", 9000, "integer"], " "

0 commit comments

Comments
 (0)