aboutsummaryrefslogtreecommitdiff
path: root/compilador/ast/ident.py
diff options
context:
space:
mode:
Diffstat (limited to 'compilador/ast/ident.py')
-rw-r--r--compilador/ast/ident.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/compilador/ast/ident.py b/compilador/ast/ident.py
new file mode 100644
index 0000000..b6a3acb
--- /dev/null
+++ b/compilador/ast/ident.py
@@ -0,0 +1,3 @@
+from typing import List
+
+Ident = List[str]