diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-12 20:23:50 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-12 20:23:50 -0400 |
commit | 15c0c2f789902ac764919913e123466ac46e4746 (patch) | |
tree | 937eea767e593798871e6774999b857cdd81509b /libalee/parser.cpp | |
parent | d36bb13f52b3899fd0f57e38f00d97e2c3a0f627 (diff) |
some class refactoring
Diffstat (limited to 'libalee/parser.cpp')
-rw-r--r-- | libalee/parser.cpp | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/libalee/parser.cpp b/libalee/parser.cpp index cdec1a5..2b1d8e1 100644 --- a/libalee/parser.cpp +++ b/libalee/parser.cpp @@ -85,15 +85,16 @@ Error Parser::parseNumber(State& state, Word word) { const auto base = state.dict.read(Dictionary::Base); DoubleCell result = 0; - auto i = word.start; - bool inv; - char c; + auto it = word.begin(&state.dict); - c = state.dict.readbyte(i); - if (inv = c == '-'; inv) - c = state.dict.readbyte(++i); + bool inv = *it == '-'; + if (inv) + ++it; + + const auto end = word.end(&state.dict); + for (char c; it != end; ++it) { + c = *it; - do { if (isdigit(c)) { result *= base; result += c - '0'; @@ -103,10 +104,7 @@ Error Parser::parseNumber(State& state, Word word) } else { return Error::noword; } - - if (++i < word.wend) - c = state.dict.readbyte(i); - } while (i < word.wend); + } if (inv) result *= -1; |