Commit Graph

7 Commits

Author SHA1 Message Date
adcc97ef0b Fix eval.c to use return code from eval_step. 2017-03-18 21:22:21 -07:00
2f65eda7bd Try to fix reading freed memory in eval.c.
This occurred when the null term was reached - the token was freed, but
no error was thrown (it's just the end of the string), so the program
attempted to increment the index using freed token data.
2017-02-26 22:35:45 -08:00
140b727cc7 Make foreach_free public and fix a few bugs. 2017-02-14 19:10:44 -08:00
97933c4ce9 Tentatively implement lexing multiple words. 2017-02-05 16:29:44 -08:00
8ff435b7b5 Add underscores to local functions. 2017-02-05 15:49:06 -08:00
a0f51d441e Change the way best match is picked to the one with the "largest" id. 2017-02-05 15:46:43 -08:00
0b6d73ebdf Write initial code for matching the patterns to a single string.
The code is limited in two aspects, at the moment:
* It's not very well tested
* The current "best" match is just the one that occurred last. While
this is just fine in terms of length, this leaves open to chance which
pattern type will be returned if multiple patterns of the same length
match.
2017-02-04 00:28:36 -08:00