diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-11 10:21:51 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-11 10:21:51 -0500 |
commit | e41b124320011cb1451f9869710a110058ee95aa (patch) | |
tree | a192a89a8c6a4b7bfab7d35ecf0cabe323048394 /libalee/parser.hpp | |
parent | bc3e952b487365fdf5e60e9fcfa0841c23972e30 (diff) |
update documentation
Diffstat (limited to 'libalee/parser.hpp')
-rw-r--r-- | libalee/parser.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libalee/parser.hpp b/libalee/parser.hpp index be6f3f7..6af3ef9 100644 --- a/libalee/parser.hpp +++ b/libalee/parser.hpp @@ -26,11 +26,29 @@ class Parser { public: + /** + * Parses (and evaluates) the given string using the given state. + * The string is stored in the state's input buffer, then parseSource() + * works through that using parseWord(). parseWord() will compile or + * execute as necessary. + */ static Error parse(State&, const char *); + + /** + * Parses (and evaluates) through the words stored in the state's input + * buffer. + */ static Error parseSource(State&); private: + /** + * Parses the given word using the given state. + */ static Error parseWord(State&, Word); + + /** + * Attempts to parse the given word into a number. + */ static Error parseNumber(State&, Word); }; |