Package org.codehaus.groovy.ast.builder
Class AstStringCompiler
java.lang.Object
org.codehaus.groovy.ast.builder.AstStringCompiler
public class AstStringCompiler
extends java.lang.Object
This class handles converting Strings to ASTNode lists.
- 
Constructor Summary
Constructors Constructor Description AstStringCompiler() - 
Method Summary
Modifier and Type Method Description java.util.List<ASTNode>compile(java.lang.String script)Performs the String source toListof statementASTNode.java.util.List<ASTNode>compile(java.lang.String script, CompilePhase compilePhase, boolean statementsOnly)Performs the String source toListofASTNode.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Constructor Details
- 
AstStringCompiler
public AstStringCompiler() 
 - 
 - 
Method Details
- 
compile
public java.util.List<ASTNode> compile(java.lang.String script, CompilePhase compilePhase, boolean statementsOnly)Performs the String source toListofASTNode.- Parameters:
 script- a Groovy script in String formcompilePhase- the int based CompilePhase to compile it to.statementsOnly-- Returns:
 ListofASTNode
 - 
compile
Performs the String source toListof statementASTNode.- Parameters:
 script- a Groovy script in String form- Returns:
 Listof statementASTNode- Since:
 - 3.0.0
 
 
 -