Interface CExpressionVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
AbstractingCExpressionVisitor
,CExpressionBaseVisitor
,ControllingCExpressionVisitor
public interface CExpressionVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
CExpressionParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byCExpressionParser.additiveExpression()
.Visit a parse tree produced byCExpressionParser.andExpression()
.Visit a parse tree produced byCExpressionParser.argumentExpressionList()
.Visit a parse tree produced byCExpressionParser.assignmentExpression()
.Visit a parse tree produced byCExpressionParser.assignmentOperator()
.Visit a parse tree produced byCExpressionParser.conditionalExpression()
.Visit a parse tree produced byCExpressionParser.equalityExpression()
.Visit a parse tree produced byCExpressionParser.exclusiveOrExpression()
.Visit a parse tree produced byCExpressionParser.expression()
.Visit a parse tree produced byCExpressionParser.inclusiveOrExpression()
.Visit a parse tree produced byCExpressionParser.logicalAndExpression()
.Visit a parse tree produced byCExpressionParser.logicalOperand()
.Visit a parse tree produced byCExpressionParser.logicalOrExpression()
.Visit a parse tree produced byCExpressionParser.macroExpression()
.Visit a parse tree produced byCExpressionParser.multiplicativeExpression()
.Visit a parse tree produced byCExpressionParser.namespaceExpression()
.Visit a parse tree produced byCExpressionParser.primaryExpression()
.Visit a parse tree produced byCExpressionParser.relationalExpression()
.Visit a parse tree produced byCExpressionParser.shiftExpression()
.Visit a parse tree produced byCExpressionParser.specialOperator()
.Visit a parse tree produced byCExpressionParser.specialOperatorArgument()
.Visit a parse tree produced byCExpressionParser.unaryOperator()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitExpression
Visit a parse tree produced byCExpressionParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitConditionalExpression
Visit a parse tree produced byCExpressionParser.conditionalExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPrimaryExpression
Visit a parse tree produced byCExpressionParser.primaryExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSpecialOperator
Visit a parse tree produced byCExpressionParser.specialOperator()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSpecialOperatorArgument
Visit a parse tree produced byCExpressionParser.specialOperatorArgument()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitUnaryOperator
Visit a parse tree produced byCExpressionParser.unaryOperator()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNamespaceExpression
Visit a parse tree produced byCExpressionParser.namespaceExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMultiplicativeExpression
Visit a parse tree produced byCExpressionParser.multiplicativeExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAdditiveExpression
Visit a parse tree produced byCExpressionParser.additiveExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitShiftExpression
Visit a parse tree produced byCExpressionParser.shiftExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRelationalExpression
Visit a parse tree produced byCExpressionParser.relationalExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEqualityExpression
Visit a parse tree produced byCExpressionParser.equalityExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAndExpression
Visit a parse tree produced byCExpressionParser.andExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExclusiveOrExpression
Visit a parse tree produced byCExpressionParser.exclusiveOrExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInclusiveOrExpression
Visit a parse tree produced byCExpressionParser.inclusiveOrExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLogicalAndExpression
Visit a parse tree produced byCExpressionParser.logicalAndExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLogicalOrExpression
Visit a parse tree produced byCExpressionParser.logicalOrExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLogicalOperand
Visit a parse tree produced byCExpressionParser.logicalOperand()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMacroExpression
Visit a parse tree produced byCExpressionParser.macroExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArgumentExpressionList
Visit a parse tree produced byCExpressionParser.argumentExpressionList()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAssignmentExpression
Visit a parse tree produced byCExpressionParser.assignmentExpression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAssignmentOperator
Visit a parse tree produced byCExpressionParser.assignmentOperator()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-