r4736@macbookpro: aamine | 2009-05-05 12:14:39 +0900

add preproc tag


git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4176 1b9489fe-b721-0410-924e-b54b9192deb8
This commit is contained in:
Minero Aoki 2009-05-08 10:40:48 +00:00
parent 4a93ac31fb
commit 4d82581eb6
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ public class TypeResolver extends Visitor
public void resolve(AST ast) {
this.typeTable = ast.typeTable();
defineTypes(ast.types());
// #@@range/resolveProgram_core{
for (TypeDefinition t : ast.types()) {
t.accept(this);
}
@ -29,6 +30,7 @@ public class TypeResolver extends Visitor
for (Entity e : ast.entities()) {
e.accept(this);
}
// #@@}
}
// #@@}