aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 20:15:16 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 20:15:16 -0500
commit78507c65c4ab649bbb0655d9485bf2f6e712af5c (patch)
tree4563a821183fd6e11d7efc968ee5f8515db8ed85 /alee.cpp
parent501ca28d509bf6f41ed5797fa68f07e37ab9a294 (diff)
implement if and then
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/alee.cpp b/alee.cpp
index f87831f..be71730 100644
--- a/alee.cpp
+++ b/alee.cpp
@@ -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)