Add mostly-empty AST module to rustc.

This commit is contained in:
Graydon Hoare 2010-08-12 10:27:50 -07:00
parent 988695a96c
commit 5297582ba2
2 changed files with 13 additions and 0 deletions

12
src/comp/fe/ast.rs Normal file
View File

@ -0,0 +1,12 @@
type crate = rec( str filename );
//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End:
//

View File

@ -4,6 +4,7 @@
use std;
mod fe {
mod ast;
mod lexer;
mod parser;
}