Package com.google.javascript.jscomp
Class SyntheticAst
java.lang.Object
com.google.javascript.jscomp.SyntheticAst
- All Implemented Interfaces:
SourceAst,Serializable
An AST generated totally by the compiler.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidclearAst()Removes any references to root node of the AST.getAstRoot(AbstractCompiler compiler) Gets the root node of the AST for the source file this represents.Returns the source file the generated AST represents.voidsetSourceFile(SourceFile file) Sets the source file the generated AST represents.
-
Method Details
-
getAstRoot
Description copied from interface:SourceAstGets the root node of the AST for the source file this represents. The AST is lazily instantiated and cached.- Specified by:
getAstRootin interfaceSourceAst
-
clearAst
public void clearAst()Description copied from interface:SourceAstRemoves any references to root node of the AST. If it is requested again, another parse will be performed. This method is needed to allow the ASTs to be garbage collected if the inputs are still around after compilation. -
getInputId
- Specified by:
getInputIdin interfaceSourceAst- Returns:
- The input id associated with this AST
-
getSourceFile
Description copied from interface:SourceAstReturns the source file the generated AST represents.- Specified by:
getSourceFilein interfaceSourceAst
-
setSourceFile
Description copied from interface:SourceAstSets the source file the generated AST represents. This can be called after deserializing if access to the source file is needed. If a different file is provided than that with which this was created, an IllegalStateException will be thrown.- Specified by:
setSourceFilein interfaceSourceAst
-