Class PositionConfigureUtils
java.lang.Object
org.apache.groovy.parser.antlr4.util.PositionConfigureUtils
public class PositionConfigureUtils
extends java.lang.Object
Utilities for configuring node positions
- 
Constructor SummaryConstructors Constructor Description PositionConfigureUtils()
- 
Method SummaryModifier 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<java.lang.Integer,java.lang.Integer>endPosition(org.antlr.v4.runtime.Token token)Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- 
Constructor Details- 
PositionConfigureUtilspublic PositionConfigureUtils()
 
- 
- 
Method Details- 
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.
 
- 
endPositionpublic static Tuple2<java.lang.Integer,java.lang.Integer> endPosition(org.antlr.v4.runtime.Token token)
- 
configureASTpublic static <T extends ASTNode> T configureAST(T astNode, org.antlr.v4.runtime.tree.TerminalNode terminalNode)
- 
configureAST
- 
configureAST
- 
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)
- 
configureAST
 
-