diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:13:32 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:13:32 -0500 |
commit | af51fb5bdfd9c338b7cf8b75b792e04a2667af5e (patch) | |
tree | 0d6baf72acf05d263dcd8ed0b13888fb6265df81 /libalee/parser.cpp | |
parent | 5162349f925dfc48f7269538b9cdb1c06df8d5ff (diff) |
add LIBALEE_SECTION; minor fixes
Diffstat (limited to 'libalee/parser.cpp')
-rw-r--r-- | libalee/parser.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libalee/parser.cpp b/libalee/parser.cpp index 19aa5f7..b3e8211 100644 --- a/libalee/parser.cpp +++ b/libalee/parser.cpp @@ -16,12 +16,11 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#include "corewords.hpp" -#include "ctype.hpp" -#include "parser.hpp" +#include "alee.hpp" Error (*Parser::customParse)(State&, Word) = nullptr; +LIBALEE_SECTION Error Parser::parse(State& state, const char *str) { auto addr = Dictionary::Input; @@ -40,6 +39,7 @@ Error Parser::parse(State& state, const char *str) return parseSource(state); } +LIBALEE_SECTION Error Parser::parseSource(State& state) { auto err = Error::none; @@ -50,6 +50,7 @@ Error Parser::parseSource(State& state) return err; } +LIBALEE_SECTION Error Parser::parseWord(State& state, Word word) { bool imm; @@ -81,6 +82,7 @@ Error Parser::parseWord(State& state, Word word) return Error::none; } +LIBALEE_SECTION Error Parser::parseNumber(State& state, Word word) { const auto base = state.dict.read(Dictionary::Base); @@ -113,6 +115,7 @@ Error Parser::parseNumber(State& state, Word word) return Error::none; } +LIBALEE_SECTION void Parser::processLiteral(State& state, Cell value) { if (state.compiling()) { |