Class PositionConfigureUtils
- java.lang.Object
- 
- org.apache.groovy.parser.antlr4.util.PositionConfigureUtils
 
- 
 public class PositionConfigureUtils extends Object Utilities for configuring node positions
- 
- 
Constructor SummaryConstructors Constructor Description PositionConfigureUtils()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static <T extends ASTNode>
 TconfigureAST(T astNode, org.antlr.v4.runtime.Token token)static <T extends ASTNode>
 TconfigureAST(T astNode, org.antlr.v4.runtime.tree.TerminalNode terminalNode)static <T extends ASTNode>
 TconfigureAST(T astNode, GroovyParser.GroovyParserRuleContext ctx)Sets location(lineNumber, colNumber, lastLineNumber, lastColumnNumber) for node using standard context information.static <T extends ASTNode>
 TconfigureAST(T astNode, GroovyParser.GroovyParserRuleContext ctx, ASTNode stop)static <T extends ASTNode>
 TconfigureAST(T astNode, ASTNode source)static <T extends ASTNode>
 TconfigureAST(T astNode, ASTNode start, ASTNode stop)static <T extends ASTNode>
 voidconfigureEndPosition(T astNode, org.antlr.v4.runtime.Token token)static Tuple2<Integer,Integer>endPosition(org.antlr.v4.runtime.Token token)
 
- 
- 
- 
Method Detail- 
configureASTpublic static <T extends ASTNode> T configureAST(T astNode, GroovyParser.GroovyParserRuleContext ctx) Sets location(lineNumber, colNumber, lastLineNumber, lastColumnNumber) for node using standard context information. Note: this method is implemented to be closed over ASTNode. It returns same node as it received in arguments.- Parameters:
- astNode- Node to be modified.
- ctx- Context from which information is obtained.
- Returns:
- Modified astNode.
 
 - 
configureASTpublic static <T extends ASTNode> T configureAST(T astNode, org.antlr.v4.runtime.tree.TerminalNode terminalNode) 
 - 
configureASTpublic static <T extends ASTNode> T configureAST(T astNode, org.antlr.v4.runtime.Token token) 
 - 
configureASTpublic static <T extends ASTNode> T configureAST(T astNode, GroovyParser.GroovyParserRuleContext ctx, ASTNode stop) 
 - 
configureEndPositionpublic static <T extends ASTNode> void configureEndPosition(T astNode, org.antlr.v4.runtime.Token token) 
 
- 
 
-