Skip to content

Commit

Permalink
support descendant combinator
Browse files Browse the repository at this point in the history
  • Loading branch information
mununki committed Aug 5, 2024
1 parent 8068d4f commit 454ca52
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 3 deletions.
7 changes: 5 additions & 2 deletions rescript/__tests__/test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions rescript/__tests__/test.res

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions rescript/css/tailwind.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions rescript/src/View.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rescript/src/View.res

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/lexer.mll
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ let pseudo_class = ':'
let pseudo_element = "::"
let l_attribute_selector = '['
let comma = ','
let end_of_class = comma | pseudo_class | pseudo_element | l_attribute_selector | dot | newline | '>' | '{'
let end_of_class = comma | pseudo_class | pseudo_element | l_attribute_selector | dot | newline | '>' | '{' | white

rule read =
parse
Expand Down

0 comments on commit 454ca52

Please sign in to comment.