diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-24 19:09:53 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-24 19:09:53 -0500 |
commit | 0b88b4596e6265863e75e7aabcca52734e147fae (patch) | |
tree | 2210e75d0b5eff6e462770e5278a1baf504423b0 /alee.cpp | |
parent | 914a75b2097090595d12015b750f97dc55bf7dcd (diff) |
compact implementation; runs on msp430
Diffstat (limited to 'alee.cpp')
-rw-r--r-- | alee.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -26,7 +26,7 @@ static bool okay = false; static void readchar(State& state); -static void parseLine(Parser&, State&, std::string_view); +static void parseLine(Parser&, State&, const std::string&); static void parseFile(Parser&, State&, std::istream&); int main(int argc, char *argv[]) @@ -105,9 +105,9 @@ void user_sys(State& state) } } -void parseLine(Parser& parser, State& state, std::string_view line) +void parseLine(Parser& parser, State& state, const std::string& line) { - if (auto r = parser.parse(state, line); r == 0) { + if (auto r = parser.parse(state, line.c_str()); r == 0) { if (okay) std::cout << (state.compiling() ? "compiled" : "ok") << std::endl; } else { @@ -116,6 +116,7 @@ void parseLine(Parser& parser, State& state, std::string_view line) std::cout << "word not found in: " << line << std::endl; break; default: + std::cout << "error: " << r << std::endl; break; } } |