/**
* @param tokenizer
*/
public ScopeParser(Tokenizer tokenizer, File file) {
tokenizer.addTokenListener(this);
root_scope = new Scope(null, "root");
this.file = file;
currentScope = root_scope;
currentScope.setFile(file);
stack.push(currentScope);
}