diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-01-01 10:16:16 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-01-01 10:16:16 -0500 |
commit | e8c9f97f4fa9502b88c8c3a44c5d5f5f1c98d506 (patch) | |
tree | 37936d41a6e595d5fdf4b9d1f74a007b6832985f /libalee/dictionary.hpp | |
parent | 2261914a6b291bf4073cddf30a862df3c3a341e9 (diff) | |
parent | 6e4c0430de5ade2c8375ddcdeec93d4df3b163b1 (diff) |
Merge branch 'native' of ssh://code.bitgloo.com:222/bitgloo/alee-forth into native
Diffstat (limited to 'libalee/dictionary.hpp')
-rw-r--r-- | libalee/dictionary.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libalee/dictionary.hpp b/libalee/dictionary.hpp index 78bc19d..d465e60 100644 --- a/libalee/dictionary.hpp +++ b/libalee/dictionary.hpp @@ -75,6 +75,7 @@ public: constexpr static Cell Immediate = (1 << 5); constexpr static Cell DistancePos = 6; + /** Maximum "short" distance between two definitions. */ constexpr static Cell MaxDistance = (1 << (sizeof(Cell) * 8 - DistancePos)) - 1; @@ -157,6 +158,8 @@ public: */ void addDefinition(Word word) noexcept; + void addNativeWord(const char *s, void (*func)(State&)); + /** * Searches the dictionary for an entry for the given word. * @param word The dictionary-stored word to search for. |