소스 검색

Function names in selector addons are now lowercased

Taddeüs Kroes 11 년 전
부모
커밋
bc931ce492
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      parser.mly

+ 1 - 1
parser.mly

@@ -239,7 +239,7 @@ pseudo:
   | COLON id=IDENT
   { ":" ^ (String.lowercase id) }
   | COLON f=FUNCTION args=wslist(COMMA, simple_selector) RPAREN
-  { ":" ^ f ^ "(" ^ String.concat "," args ^ ")" }
+  { ":" ^ String.lowercase f ^ "(" ^ String.concat "," args ^ ")" }
 
 declaration:
   | name=property S* COLON S* value=expr important=boption(ig2(IMPORTANT_SYM, S*))