-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.cpp
67 lines (54 loc) · 1.38 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <iostream>
#include <format>
#include <helper/std_console.h>
#include <argparse/argparse.hpp>
#include "driver/driver.h"
using namespace std;
int main(int argc, char *argv[])
{
argparse::ArgumentParser arg_parser{"clox"};
arg_parser.add_argument("-f", "--file")
.help("the script to run_code")
.default_value(string{""})
.implicit_value(string{""})
.nargs(1);
arg_parser.add_argument("-a", "--classic")
.help("Use classic (tree-walker) interpreter instead of bytecode virtual machine")
.default_value(false)
.implicit_value(true);
arg_parser.add_argument("-t", "--show-ast")
.help("Show AST structure")
.default_value(false)
.implicit_value(true);
arg_parser.add_argument("-d", "--show-assembly")
.help("Show assembly code")
.default_value(false)
.implicit_value(true);
arg_parser.add_argument("-vd", "--verbose-debug")
.help("Verbose debug output.")
.default_value(false)
.implicit_value(true);
arg_parser.add_argument("-t", "--time-statistic")
.help("Show time statistic like the runtime, compile time, etc.")
.default_value(false)
.implicit_value(true);
try
{
arg_parser.parse_args(argc, argv);
}
catch (const std::runtime_error &err)
{
cout << err.what() << endl;
cout << arg_parser;
return 1;
}
try
{
return clox::driver::run(arg_parser);
}
catch (const std::exception &e)
{
cerr << e.what() << endl;
return 1;
}
}