summaryrefslogtreecommitdiffstats
path: root/src/front/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/front/parser.py')
-rw-r--r--src/front/parser.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/front/parser.py b/src/front/parser.py
index 511e929..53818bc 100644
--- a/src/front/parser.py
+++ b/src/front/parser.py
@@ -93,7 +93,11 @@ class Parser:
self.move()
return Constant(0, self.lexer.line)
if self.token.tag == Tag.IDENT:
- return Variable(self.match(Tag.IDENT), self.lexer.line)
+ line = self.lexer.line
+ name = self.match(Tag.IDENT)
+ if not self.scope.contains(name):
+ raise SyntaxError("%s is not declared in line %d" % (name, line))
+ return Variable(name, line)
return self.function_call()
# function_call = "call" ident "[" [ expression_list ] "]".