diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 06:07:14 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 06:07:14 -0500 |
commit | 513136558e55f8a843f8f326ccafe1503acf67e4 (patch) | |
tree | ab680a1b485f715d4e7118a2ed79583c30c5ac2a /libalee/parser.cpp | |
parent | 2b64fbdfb84c4ae7657ed38c388acd5cf739d661 (diff) |
coreword opcodes via token(); calculated WordCount
Diffstat (limited to 'libalee/parser.cpp')
-rw-r--r-- | libalee/parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libalee/parser.cpp b/libalee/parser.cpp index 3236ae2..328198a 100644 --- a/libalee/parser.cpp +++ b/libalee/parser.cpp @@ -69,7 +69,7 @@ Error Parser::parseWord(State& state, Word word) return r; } else { ins = cw; - imm = ins == CoreWords::Semicolon; + imm = ins == CoreWords::token(";"); } } else { imm = state.dict.read(ins) & Dictionary::Immediate; @@ -119,7 +119,7 @@ Error Parser::parseNumber(State& state, Word word) void Parser::processLiteral(State& state, Cell value) { if (state.compiling()) { - constexpr auto ins = CoreWords::findi("_lit"); + constexpr auto ins = CoreWords::token("_lit"); const Cell maxlit = Dictionary::Begin - CoreWords::WordCount; if (value >= 0 && value < maxlit) |