diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2019-07-14 13:23:01 -0400 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2019-07-14 13:23:01 -0400 |
commit | ba8a90a761ab277b65c634442cc0756d59ec09d5 (patch) | |
tree | accc129a99f0adc775b581df9ffd10a19be4a8da | |
parent | d24060934bc75ebd827981e75183be7610ac63f5 (diff) |
Removes stack operation
Stack not implemented
-rw-r--r-- | pc.l | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |