use of com.google.javascript.jscomp.parsing.parser.trees.FinallyTree in project closure-compiler by google.
the class Parser method parseFinallyBlock.
private FinallyTree parseFinallyBlock() {
SourcePosition start = getTreeStartLocation();
eat(TokenType.FINALLY);
BlockTree finallyBlock = parseBlock();
return new FinallyTree(getTreeLocation(start), finallyBlock);
}
Aggregations