Differences From Artifact [6a76d51cc68a610b]:
- File
polemy/parse.d
- 2010-11-07 10:18:02 - part of checkin [423f308350] on branch trunk - Initial commit. Just for setting up the environment. (user: kinaba) [annotate]
To Artifact [fe545db0fb7a2428]:
- File
polemy/parse.d
- 2010-11-07 10:32:59 - part of checkin [4198578702e] on branch trunk - Changed several documentation comments into ddoc compatible ones. (user: kinaba) [annotate]
1 module polemy.parse; <
2 import polemy._common; <
3 /* | 1 /*
4 * Author: k.inaba | 2 * Authors: k.inaba
5 * License: NYSL 0.9982 (http://www.kmonos.net/nysl/ | 3 * License: NYSL 0.9982 http://www.kmonos.net/nysl/
> 4 *
6 * Parser for the polemy programming language | 5 * Parser for Polemy programming language
7 */ 6 */
8 <
> 7 module polemy.parse;
> 8 import polemy._common;
9 import polemy.lex; 9 import polemy.lex;
10 import polemy.ast; 10 import polemy.ast;
11 import std.bigint; 11 import std.bigint;
12 12
13 /// Parsing Failure 13 /// Parsing Failure
14 14
15 class ParserException : Exception 15 class ParserException : Exception