Skip to content
Snippets Groups Projects
Commit bc931ce4 authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

Function names in selector addons are now lowercased

parent 8b440b27
No related branches found
No related tags found
No related merge requests found
...@@ -239,7 +239,7 @@ pseudo: ...@@ -239,7 +239,7 @@ pseudo:
| COLON id=IDENT | COLON id=IDENT
{ ":" ^ (String.lowercase id) } { ":" ^ (String.lowercase id) }
| COLON f=FUNCTION args=wslist(COMMA, simple_selector) RPAREN | COLON f=FUNCTION args=wslist(COMMA, simple_selector) RPAREN
{ ":" ^ f ^ "(" ^ String.concat "," args ^ ")" } { ":" ^ String.lowercase f ^ "(" ^ String.concat "," args ^ ")" }
declaration: declaration:
| name=property S* COLON S* value=expr important=boption(ig2(IMPORTANT_SYM, S*)) | name=property S* COLON S* value=expr important=boption(ig2(IMPORTANT_SYM, S*))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment