parser: add << and >> operators
[nit.git] / src / parser / parser_nodes.nit
index 7a0e574..aa0366f 100644 (file)
@@ -258,12 +258,18 @@ end
 class TLe
 special Token
 end
+class TLl
+special Token
+end
 class TGt
 special Token
 end
 class TGe
 special Token
 end
+class TGg
+special Token
+end
 class TStarship
 special Token
 end
@@ -395,7 +401,8 @@ special Prod
 end
 class ASuperclass
 special Prod
-    readable var _n_kwspecial: TKwspecial
+    readable var _n_kwspecial: nullable TKwspecial = null
+    readable var _n_kwsuper: nullable TKwsuper = null
     readable var _n_type: AType
 end
 class APropdef special Prod
@@ -406,7 +413,8 @@ special APropdef
     readable var _n_kwredef: nullable TKwredef = null
     readable var _n_visibility: AVisibility
     readable var _n_kwvar: TKwvar
-    readable var _n_id: TAttrid
+    readable var _n_id: nullable TAttrid
+    readable var _n_id2: nullable TId
     readable var _n_type: nullable AType = null
     readable var _n_readable: nullable AAble = null
     readable var _n_writable: nullable AAble = null
@@ -453,6 +461,7 @@ special APropdef
     readable var _n_type: AType
 end
 class AAble special Prod
+    readable var _n_visibility: nullable AVisibility = null
     readable var _n_kwredef: nullable TKwredef = null
 end
 class AReadAble
@@ -512,6 +521,14 @@ class AGtMethid
 special AMethid
     readable var _n_gt: TGt
 end
+class ALlMethid
+special AMethid
+    readable writable var _n_ll: TLl
+end
+class AGgMethid
+special AMethid
+    readable writable var _n_gg: TGg
+end
 class ABraMethid
 special AMethid
     readable var _n_obra: TObra
@@ -689,6 +706,11 @@ special ABoolExpr
     readable var _n_expr: AExpr
     readable var _n_expr2: AExpr
 end
+class AOrElseExpr
+special ABoolExpr
+    readable var _n_expr: AExpr
+    readable var _n_expr2: AExpr
+end
 class ANotExpr
 special ABoolExpr
     readable var _n_kwnot: TKwnot
@@ -711,12 +733,18 @@ end
 class ALeExpr
 special ABinopExpr
 end
+class ALlExpr
+special ABinopExpr
+end
 class AGtExpr
 special ABinopExpr
 end
 class AGeExpr
 special ABinopExpr
 end
+class AGgExpr
+special ABinopExpr
+end
 class AIsaExpr
 special ABoolExpr
     readable var _n_expr: AExpr