-
Notifications
You must be signed in to change notification settings - Fork 0
/
NuevaFuncionalidad.py
39 lines (27 loc) · 1.08 KB
/
NuevaFuncionalidad.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Generated from F:/Archivos/Code/Test/Matrix.g4 by ANTLR 4.13.1
from antlr4 import *
if "." in __name__:
from .MatrixParser import MatrixParser
else:
from MatrixParser import MatrixParser
# This class defines a complete listener for a parse tree produced by MatrixParser.
class MatrixListener(ParseTreeListener):
# Enter a parse tree produced by MatrixParser#matrix.
def enterMatrix(self, ctx:MatrixParser.MatrixContext):
pass
# Exit a parse tree produced by MatrixParser#matrix.
def exitMatrix(self, ctx:MatrixParser.MatrixContext):
pass
# Enter a parse tree produced by MatrixParser#filas.
def enterFilas(self, ctx:MatrixParser.FilasContext):
pass
# Exit a parse tree produced by MatrixParser#filas.
def exitFilas(self, ctx:MatrixParser.FilasContext):
pass
# Enter a parse tree produced by MatrixParser#fila.
def enterFila(self, ctx:MatrixParser.FilaContext):
pass
# Exit a parse tree produced by MatrixParser#fila.
def exitFila(self, ctx:MatrixParser.FilaContext):
pass
del MatrixParser