From 481692811ac431c5ffd31d73ef321e483a7eab37 Mon Sep 17 00:00:00 2001
From: Taddeus Kroes <taddeuskroes@gmail.com>
Date: Fri, 18 Jul 2014 11:31:54 +0200
Subject: [PATCH] Added some reference links to parser

---
 parser.mly | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/parser.mly b/parser.mly
index 68d9cea..5215576 100644
--- a/parser.mly
+++ b/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
-- 
GitLab