[add support for parsing some ghc constructs so containers can compile out of the box
John Meacham <john@repetae.net>**20100709072750
 Ignore-this: 918aeb3e04d3744f9b42bc0d0898750f
] hunk ./src/FrontEnd/Class.hs 341
-    methodGroups = groupEquations methods
+    methodGroups = groupEquations (filter (not . isHsPragmaProps) methods)
hunk ./src/FrontEnd/Class.hs 429
+
hunk ./src/FrontEnd/HsParser.y 331
+      | srcloc PRAGMASPECIALIZE conid var '::' type PRAGMAEND
+                      { HsPragmaSpecialize { hsDeclSrcLoc = $1, hsDeclBool = $2, hsDeclName = $4, hsDeclType = $6
+                                           , hsDeclUniq = error "hsDeclUniq not set"  } }
hunk ./src/FrontEnd/HsParser.y 624
+      | pragmainline { $1 }