aboutsummaryrefslogtreecommitdiff
path: root/pc.l
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-07-14 13:23:01 -0400
committerTucker Evans <tuckerevans24@gmail.com>2019-07-14 13:23:01 -0400
commitba8a90a761ab277b65c634442cc0756d59ec09d5 (patch)
treeaccc129a99f0adc775b581df9ffd10a19be4a8da /pc.l
parentd24060934bc75ebd827981e75183be7610ac63f5 (diff)
Removes stack operation
Stack not implemented
Diffstat (limited to 'pc.l')
-rw-r--r--pc.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/pc.l b/pc.l
index f4f4366..15c6691 100644
--- a/pc.l
+++ b/pc.l
@@ -39,13 +39,13 @@ id [A-Za-z][A-Za-z0-9_]*
"procedure" {
debug_print(PROC, NULL);
- s = push_scope(s);
+ /*s = push_scope(s);*/
return PROC;
}
"function" {
debug_print(FUNC, NULL);
- s = push_scope(s);
+ /*s = push_scope(s);*/
return FUNC;
}