Package ru.kode.way.gradle
Interface DotVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
DotBaseVisitor
public interface DotVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
DotParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byDotParser.a_list().Visit a parse tree produced byDotParser.attr_list().Visit a parse tree produced byDotParser.attr_stmt().Visit a parse tree produced byDotParser.edge_stmt().Visit a parse tree produced byDotParser.edgeop().Visit a parse tree produced byDotParser.edgeRHS().Visit a parse tree produced byDotParser.graph().Visit a parse tree produced byDotParser.id_().Visit a parse tree produced byDotParser.node_id().Visit a parse tree produced byDotParser.node_stmt().Visit a parse tree produced byDotParser.port().Visit a parse tree produced byDotParser.stmt().Visit a parse tree produced byDotParser.stmt_list().Visit a parse tree produced byDotParser.subgraph().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitGraph
Visit a parse tree produced byDotParser.graph().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStmt_list
Visit a parse tree produced byDotParser.stmt_list().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStmt
Visit a parse tree produced byDotParser.stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttr_stmt
Visit a parse tree produced byDotParser.attr_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttr_list
Visit a parse tree produced byDotParser.attr_list().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitA_list
Visit a parse tree produced byDotParser.a_list().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdge_stmt
Visit a parse tree produced byDotParser.edge_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeRHS
Visit a parse tree produced byDotParser.edgeRHS().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEdgeop
Visit a parse tree produced byDotParser.edgeop().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNode_stmt
Visit a parse tree produced byDotParser.node_stmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNode_id
Visit a parse tree produced byDotParser.node_id().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPort
Visit a parse tree produced byDotParser.port().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubgraph
Visit a parse tree produced byDotParser.subgraph().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitId_
Visit a parse tree produced byDotParser.id_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-