Coverage for src/pyensae/languages/DOTListener.py: 0%

62 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-07-03 02:16 +0200

1# Generated from \DOT.g4 by ANTLR 4.10.1 

2from antlr4 import * 

3if __name__ is not None and "." in __name__: 

4 from .DOTParser import DOTParser 

5else: 

6 from DOTParser import DOTParser 

7 

8# This class defines a complete listener for a parse tree produced by DOTParser. 

9 

10 

11class DOTListener(ParseTreeListener): 

12 

13 # Enter a parse tree produced by DOTParser#graph. 

14 def enterGraph(self, ctx: DOTParser.GraphContext): 

15 pass 

16 

17 # Exit a parse tree produced by DOTParser#graph. 

18 def exitGraph(self, ctx: DOTParser.GraphContext): 

19 pass 

20 

21 # Enter a parse tree produced by DOTParser#stmt_list. 

22 def enterStmt_list(self, ctx: DOTParser.Stmt_listContext): 

23 pass 

24 

25 # Exit a parse tree produced by DOTParser#stmt_list. 

26 def exitStmt_list(self, ctx: DOTParser.Stmt_listContext): 

27 pass 

28 

29 # Enter a parse tree produced by DOTParser#stmt. 

30 def enterStmt(self, ctx: DOTParser.StmtContext): 

31 pass 

32 

33 # Exit a parse tree produced by DOTParser#stmt. 

34 def exitStmt(self, ctx: DOTParser.StmtContext): 

35 pass 

36 

37 # Enter a parse tree produced by DOTParser#attr_stmt. 

38 def enterAttr_stmt(self, ctx: DOTParser.Attr_stmtContext): 

39 pass 

40 

41 # Exit a parse tree produced by DOTParser#attr_stmt. 

42 def exitAttr_stmt(self, ctx: DOTParser.Attr_stmtContext): 

43 pass 

44 

45 # Enter a parse tree produced by DOTParser#attr_list. 

46 def enterAttr_list(self, ctx: DOTParser.Attr_listContext): 

47 pass 

48 

49 # Exit a parse tree produced by DOTParser#attr_list. 

50 def exitAttr_list(self, ctx: DOTParser.Attr_listContext): 

51 pass 

52 

53 # Enter a parse tree produced by DOTParser#a_list. 

54 def enterA_list(self, ctx: DOTParser.A_listContext): 

55 pass 

56 

57 # Exit a parse tree produced by DOTParser#a_list. 

58 def exitA_list(self, ctx: DOTParser.A_listContext): 

59 pass 

60 

61 # Enter a parse tree produced by DOTParser#edge_stmt. 

62 def enterEdge_stmt(self, ctx: DOTParser.Edge_stmtContext): 

63 pass 

64 

65 # Exit a parse tree produced by DOTParser#edge_stmt. 

66 def exitEdge_stmt(self, ctx: DOTParser.Edge_stmtContext): 

67 pass 

68 

69 # Enter a parse tree produced by DOTParser#edgeRHS. 

70 def enterEdgeRHS(self, ctx: DOTParser.EdgeRHSContext): 

71 pass 

72 

73 # Exit a parse tree produced by DOTParser#edgeRHS. 

74 def exitEdgeRHS(self, ctx: DOTParser.EdgeRHSContext): 

75 pass 

76 

77 # Enter a parse tree produced by DOTParser#edgeop. 

78 def enterEdgeop(self, ctx: DOTParser.EdgeopContext): 

79 pass 

80 

81 # Exit a parse tree produced by DOTParser#edgeop. 

82 def exitEdgeop(self, ctx: DOTParser.EdgeopContext): 

83 pass 

84 

85 # Enter a parse tree produced by DOTParser#node_stmt. 

86 def enterNode_stmt(self, ctx: DOTParser.Node_stmtContext): 

87 pass 

88 

89 # Exit a parse tree produced by DOTParser#node_stmt. 

90 def exitNode_stmt(self, ctx: DOTParser.Node_stmtContext): 

91 pass 

92 

93 # Enter a parse tree produced by DOTParser#node_id. 

94 def enterNode_id(self, ctx: DOTParser.Node_idContext): 

95 pass 

96 

97 # Exit a parse tree produced by DOTParser#node_id. 

98 def exitNode_id(self, ctx: DOTParser.Node_idContext): 

99 pass 

100 

101 # Enter a parse tree produced by DOTParser#port. 

102 def enterPort(self, ctx: DOTParser.PortContext): 

103 pass 

104 

105 # Exit a parse tree produced by DOTParser#port. 

106 def exitPort(self, ctx: DOTParser.PortContext): 

107 pass 

108 

109 # Enter a parse tree produced by DOTParser#subgraph. 

110 def enterSubgraph(self, ctx: DOTParser.SubgraphContext): 

111 pass 

112 

113 # Exit a parse tree produced by DOTParser#subgraph. 

114 def exitSubgraph(self, ctx: DOTParser.SubgraphContext): 

115 pass 

116 

117 # Enter a parse tree produced by DOTParser#id_. 

118 def enterId_(self, ctx: DOTParser.Id_Context): 

119 pass 

120 

121 # Exit a parse tree produced by DOTParser#id_. 

122 def exitId_(self, ctx: DOTParser.Id_Context): 

123 pass 

124 

125 

126del DOTParser