parser: add __debug__ type construct
[nit.git] / src / parser / parser_nodes.nit
index 13b68d8..90e93eb 100644 (file)
@@ -217,6 +217,9 @@ end
 class TKwlabel
        super TokenKeyword
 end
+class TKwdebug
+       super Token
+end
 class TOpar
        super Token
 end
@@ -1126,6 +1129,13 @@ abstract class AExprs
        super Prod 
     readable var _n_exprs: List[AExpr] = new List[AExpr]
 end
+class ADebugTypeExpr
+       super AExpr
+    readable var _n_kwdebug: TKwdebug
+    readable var _n_kwtype: TKwtype
+    readable var _n_expr: AExpr
+    readable var _n_type: AType
+end
 class AListExprs
        super AExprs
 end