1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 09:18:45 +10:00
collapseos/apps/lib
Virgil Dupras 213614af33 lib/expr: make recursion process a bit more orderly
Instead of going left and right, finding operators chars and replacing them
with nulls, we parse expressions in a more orderly manner, one chunk at a
time. I think it qualifies as "recursive descent", but I'm not sure.

This allows us to preserve the string we parse and should also make the
implementation of parens much easier.
2019-12-29 11:42:18 -05:00
..
args.asm recipes/rc2014/zasm: use BASIC shell 2019-12-11 13:01:51 -05:00
ari.asm lib/expr: refactor for easier operator addition 2019-11-22 14:45:12 -05:00
expr.asm lib/expr: make recursion process a bit more orderly 2019-12-29 11:42:18 -05:00
fmt.asm recipes/rc2014/zasm: use BASIC shell 2019-12-11 13:01:51 -05:00
parse.asm recipes/rc2014/zasm: use BASIC shell 2019-12-11 13:01:51 -05:00
README.md apps/ed: add (dummy) line number processing 2019-07-13 11:53:30 -04:00
util.asm basic: make cmd table more compact 2019-11-30 21:36:34 -05:00

Common code used by more than one app, but not by the kernel.