Differences From Artifact [351d6a36d1e1b0e0]:
- File
polemy/ast.d
- 2010-11-20 16:35:14 - part of checkin [3464a035ec] on branch trunk - source code cleanup (user: kinaba) [annotate]
To Artifact [02291a629f0b15b6]:
- File
polemy/ast.d
- 2010-11-21 11:11:49 - part of checkin [2bdfb8a182] on branch trunk - moved build sciprt for documents into Poseidon environment (user: kinaba) [annotate]
7 7 module polemy.ast;
8 8 import polemy._common;
9 9 import polemy.failure;
10 10
11 11 ///
12 12 abstract class AST
13 13 {
14 - immutable LexPosition pos;
14 + LexPosition pos;
15 15 mixin SimpleConstructor;
16 16 mixin SimplePatternMatch;
17 17 }
18 18
19 19 ///
20 20 class StrLiteral : AST
21 21 {