diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 20:15:16 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 20:15:16 -0500 |
commit | 78507c65c4ab649bbb0655d9485bf2f6e712af5c (patch) | |
tree | 4563a821183fd6e11d7efc968ee5f8515db8ed85 /alee.cpp | |
parent | 501ca28d509bf6f41ed5797fa68f07e37ab9a294 (diff) |
implement if and then
Diffstat (limited to 'alee.cpp')
-rw-r--r-- | alee.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -23,6 +23,8 @@ #include <iostream> #include <vector> +static bool okay = false; + static void parseLine(Parser&, State&, std::string_view); static void parseFile(Parser&, State&, std::istream&); @@ -38,6 +40,7 @@ int main(int argc, char *argv[]) parseFile(parser, state, file); } + okay = true; //std::cout << state.size() << ' ' << state.compiling << "> "; parseFile(parser, state, std::cin); @@ -65,8 +68,12 @@ void parseLine(Parser& parser, State& state, std::string_view line) r = parser.parse(state, line); } while (r == ParseStatus::Continue); - if (r != ParseStatus::Finished) + if (r == ParseStatus::Finished) { + if (okay) + std::cout << " ok" << std::endl; + } else { std::cout << to_string(r) << ": " << line << std::endl; + } } void parseFile(Parser& parser, State& state, std::istream& file) |