From 5991370657b48f5b44fbcc7877a7c26acf07d99e Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 14 Oct 2023 17:38:57 -0400 Subject: consteval and other refactoring --- libalee/parser.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libalee/parser.cpp') diff --git a/libalee/parser.cpp b/libalee/parser.cpp index da7ae0b..16281d3 100644 --- a/libalee/parser.cpp +++ b/libalee/parser.cpp @@ -111,12 +111,12 @@ Error Parser::parseNumber(State& state, Word word) auto ins = CoreWords::findi("_lit"); const Cell maxlit = Dictionary::Begin - CoreWords::WordCount; - if (value >= 0 && value < maxlit) { - state.dict.add(value + CoreWords::WordCount); - } else { + if (value >= 0 && value < maxlit) + value += CoreWords::WordCount; + else state.dict.add(ins); - state.dict.add(value); - } + + state.dict.add(value); } else { state.push(value); } -- cgit v1.2.3