Diff
Not logged in

Differences From Artifact [239622603e376c11]:

To Artifact [f8a685431329b03d]:


9 9 import polemy.lex; 10 10 11 11 /// 12 12 abstract class AST 13 13 { 14 14 immutable LexPosition pos; 15 15 mixin SimpleConstructor; 16 + mixin SimplePatternMatch; 16 17 } 17 18 18 19 /// 19 20 class StrLiteral : AST 20 21 { 21 22 string data; 22 23 mixin SimpleClass;