Diff
Not logged in

Differences From Artifact [55043f61f436485a]:

To Artifact [98d6a7a3304f7043]:


11 11 12 /// 12 /// 13 abstract class AST 13 abstract class AST 14 { 14 { 15 LexPosition pos; /// 15 LexPosition pos; /// 16 16 17 mixin SimpleConstructor; 17 mixin SimpleConstructor; > 18 invariant(){ assert(pos !is null);} 18 } 19 } 19 20 20 /// AST node for integer literal 21 /// AST node for integer literal 21 class Int : AST 22 class Int : AST 22 { 23 { 23 BigInt data; /// 24 BigInt data; /// 24 25