Class LegacyGraphLanguageParserBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>, LegacyGraphLanguageParserVisitor<T>
LegacyGraphLanguageParserVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byLegacyGraphLanguageParser.attributeList().Visit a parse tree produced byLegacyGraphLanguageParser.attributeNode().Visit a parse tree produced byLegacyGraphLanguageParser.attributePath().Visit a parse tree produced byLegacyGraphLanguageParser.attributeQualifier().Visit a parse tree produced byLegacyGraphLanguageParser.graph().Visit a parse tree produced byLegacyGraphLanguageParser.subGraph().Visit a parse tree produced byLegacyGraphLanguageParser.typeIndicator().Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
LegacyGraphLanguageParserBaseVisitor
public LegacyGraphLanguageParserBaseVisitor()
-
-
Method Details
-
visitGraph
Visit a parse tree produced byLegacyGraphLanguageParser.graph().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(RuleNode)onctx.- Specified by:
visitGraphin interfaceLegacyGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeIndicator
Visit a parse tree produced byLegacyGraphLanguageParser.typeIndicator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(RuleNode)onctx.- Specified by:
visitTypeIndicatorin interfaceLegacyGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeList
Visit a parse tree produced byLegacyGraphLanguageParser.attributeList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(RuleNode)onctx.- Specified by:
visitAttributeListin interfaceLegacyGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeNode
Visit a parse tree produced byLegacyGraphLanguageParser.attributeNode().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(RuleNode)onctx.- Specified by:
visitAttributeNodein interfaceLegacyGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributePath
Visit a parse tree produced byLegacyGraphLanguageParser.attributePath().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(RuleNode)onctx.- Specified by:
visitAttributePathin interfaceLegacyGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeQualifier
Visit a parse tree produced byLegacyGraphLanguageParser.attributeQualifier().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(RuleNode)onctx.- Specified by:
visitAttributeQualifierin interfaceLegacyGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubGraph
Visit a parse tree produced byLegacyGraphLanguageParser.subGraph().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(RuleNode)onctx.- Specified by:
visitSubGraphin interfaceLegacyGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-