had an idea or two

This commit is contained in:
Aidan 2019-11-21 21:10:22 -08:00
parent 2b5e43a322
commit bb070592a6
No known key found for this signature in database
GPG key ID: 327711E983899316
2 changed files with 11 additions and 3 deletions

View file

@ -58,7 +58,8 @@ func string_delimiters_valid(arg string) bool {
}
func list_is_operation(arg *Token) bool {
return ((*Token) arg._inner).tag == OPERATOR_T
// TODO: Rewrite after implementing a symbol table
//return ((*Token) arg._inner).tag == OPERATOR_T
}
// theres probly a way better way to do it.