use of com.google.javascript.jscomp.parsing.parser.trees.AmbientDeclarationTree in project closure-compiler by google.
the class Parser method parseAmbientDeclaration.
private ParseTree parseAmbientDeclaration() {
SourcePosition start = getTreeStartLocation();
eat(TokenType.DECLARE);
ParseTree declare = parseAmbientDeclarationHelper();
return new AmbientDeclarationTree(getTreeLocation(start), declare);
}
Aggregations