diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-05 07:00:38 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-05 07:00:38 -0500 |
commit | 789791692a20e4da7b798a249ca24ed35cd78b5f (patch) | |
tree | 13a290d4cbbe6e50f1b393dc0161fd4bca31c6ef /libalee/parser.hpp | |
parent | e175ab21b36e93ed17cd065a4afe2fa284791781 (diff) |
make parser extendable
Diffstat (limited to 'libalee/parser.hpp')
-rw-r--r-- | libalee/parser.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libalee/parser.hpp b/libalee/parser.hpp index 6af3ef9..f868afb 100644 --- a/libalee/parser.hpp +++ b/libalee/parser.hpp @@ -26,6 +26,8 @@ class Parser { public: + static Error (*customParse)(State&, Word); + /** * Parses (and evaluates) the given string using the given state. * The string is stored in the state's input buffer, then parseSource() @@ -40,6 +42,8 @@ public: */ static Error parseSource(State&); + static void processLiteral(State&, Cell); + private: /** * Parses the given word using the given state. |