소스 검색

Added some reference links to parser

Taddeus Kroes 11 년 전
부모
커밋
481692811a
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      parser.mly

+ 5 - 1
parser.mly

@@ -2,13 +2,17 @@
   (* CSS grammar based on:
    * - http://www.w3.org/TR/CSS2/grammar.html
    * - http://www.w3.org/TR/css3-mediaqueries/
+   * - http://www.w3.org/TR/css3-fonts/
+   * - http://www.w3.org/TR/css3-namespace/
+   * - http://www.w3.org/TR/css3-animations/
+   * - http://www.w3.org/TR/css3-conditional/
    *)
   open Lexing
   open Types
 
+  (* TODO: move this to utils *)
   let ( |> ) a b = b a
 
-  (* TODO: move this to utils *)
   let rec filter_none = function
     | [] -> []
     | None :: tl -> filter_none tl