use of com.google.javascript.jscomp.parsing.parser.trees.VariableStatementTree in project closure-compiler by google.
the class Parser method parseVariableStatement.
// 12.2 Variable Statement
private VariableStatementTree parseVariableStatement() {
SourcePosition start = getTreeStartLocation();
VariableDeclarationListTree declarations = parseVariableDeclarationList();
eatPossiblyImplicitSemiColon();
return new VariableStatementTree(getTreeLocation(start), declarations);
}
Aggregations