aboutsummaryrefslogtreecommitdiff
path: root/compilador/astree/expr.py
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2022-11-25 23:22:13 -0600
committerIván Ávalos <avalos@disroot.org>2022-11-25 23:22:13 -0600
commitd01b073ccb1dd4c2a2306f5b53679edc8e1cd138 (patch)
tree78f2fd865606a8821e133246db80ae53e0c6a730 /compilador/astree/expr.py
parent881ae40f989f649926a876a54c9a096c03cf9009 (diff)
downloadjavanol-d01b073ccb1dd4c2a2306f5b53679edc8e1cd138.tar.gz
javanol-d01b073ccb1dd4c2a2306f5b53679edc8e1cd138.tar.bz2
javanol-d01b073ccb1dd4c2a2306f5b53679edc8e1cd138.zip
Pequeño arreglo
Diffstat (limited to 'compilador/astree/expr.py')
-rw-r--r--compilador/astree/expr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilador/astree/expr.py b/compilador/astree/expr.py
index 1015d74..27e237a 100644
--- a/compilador/astree/expr.py
+++ b/compilador/astree/expr.py
@@ -24,7 +24,7 @@ from astree.graphable import Graphable
from astree.type import Type
from astree.ident import Ident
-Expr = None
+Expr = type(None)
# An identifier access expression.
#