.NET
antlr.txt
Associated article: Compiler Construction with ANTLR and Java
Tags: .NET
Published source code accompanying the article by Gary L. Schaps in which he discusses ANTLR, short for "Another Tool for Language Recognition." It is a language tool that gives you a framework for constructing recognizers, compilers, and translators for C, C++, and Java. Also see ANTLR.ZIP.
Compiler Construction with ANTLR and Java
Gary L. Schaps
Example 1:
// This is the start rule for the parser.
compilationUnit
: // A pattern file consists of language elements,
// possibly intermixed with import directives
(( importDirective ) | ( languageElement ))*
EOF
;
Example 2:
// ... parse the file ...
public static ...


