aboutsummaryrefslogtreecommitdiffstats
path: root/alee-standalone.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alee-standalone.cpp')
-rw-r--r--alee-standalone.cpp20
1 files changed, 9 insertions, 11 deletions
diff --git a/alee-standalone.cpp b/alee-standalone.cpp
index 1602641..3c4eb3d 100644
--- a/alee-standalone.cpp
+++ b/alee-standalone.cpp
@@ -29,10 +29,8 @@
static bool okay = false;
static void readchar(State& state);
-static void parseLine(Parser&, State&, const std::string&);
-static void parseFile(Parser&, State&, std::istream&);
-
-static Parser parser;
+static void parseLine(State&, const std::string&);
+static void parseFile(State&, std::istream&);
int main(int argc, char *argv[])
{
@@ -42,11 +40,11 @@ int main(int argc, char *argv[])
std::vector args (argv + 1, argv + argc);
for (const auto& a : args) {
std::ifstream file (a);
- parseFile(parser, state, file);
+ parseFile(state, file);
}
okay = true;
- parseFile(parser, state, std::cin);
+ parseFile(state, std::cin);
return 0;
}
@@ -115,7 +113,7 @@ void user_sys(State& state)
std::jmp_buf oldjb;
memcpy(oldjb, state.jmpbuf, sizeof(std::jmp_buf));
state.ip = 0;
- parser.parseSource(state);
+ Parser::parseSource(state);
memcpy(state.jmpbuf, oldjb, sizeof(std::jmp_buf));
state.ip = oldip;
}
@@ -123,9 +121,9 @@ void user_sys(State& state)
}
}
-void parseLine(Parser& parser, State& state, const std::string& line)
+void parseLine(State& state, const std::string& line)
{
- if (auto r = parser.parse(state, line.c_str()); r == 0) {
+ if (auto r = Parser::parse(state, line.c_str()); r == 0) {
if (okay)
std::cout << (state.compiling() ? "compiled" : "ok") << std::endl;
} else {
@@ -161,7 +159,7 @@ void parseLine(Parser& parser, State& state, const std::string& line)
}
}
-void parseFile(Parser& parser, State& state, std::istream& file)
+void parseFile(State& state, std::istream& file)
{
while (file.good()) {
std::string line;
@@ -170,7 +168,7 @@ void parseFile(Parser& parser, State& state, std::istream& file)
if (line == "bye")
exit(0);
- parseLine(parser, state, line);
+ parseLine(state, line);
}
}