Diff
Not logged in

Differences From Artifact [55043f61f436485a]:

To Artifact [98d6a7a3304f7043]:


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