-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
79 lines (69 loc) · 2.27 KB
/
Copy pathProgram.cs
File metadata and controls
79 lines (69 loc) · 2.27 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
using System;
using System.IO;
using System.Diagnostics;
namespace JCore
{
class Program
{
static void Main(string[] args)
{
var interpreter = new Interpreter();
if (args.Length == 0)
{
RunRepl(interpreter);
}
else
{
var path = string.Join(" ", args);
RunFile(interpreter, path);
}
}
static void RunRepl(Interpreter interpreter)
{
Console.WriteLine("💡 JCore Beta 1.0.0 REPL mode. Type 'exit' to quit.\n");
while (true)
{
Console.Write("> ");
var line = Console.ReadLine();
if (string.IsNullOrWhiteSpace(line) || line.Trim().ToLower() == "exit")
break;
try
{
var lexer = new Lexer(line);
var tokens = lexer.Tokenize();
var parser = new Parser(tokens);
var statements = parser.Parse();
interpreter.Run(statements);
}
catch (Exception ex)
{
Console.WriteLine($"❌ Syntax error: {ex.Message}");
}
}
}
static void RunFile(Interpreter interpreter, string path)
{
if (!File.Exists(path))
{
Console.WriteLine($"❌ File not found: {path}");
return;
}
try
{
var code = File.ReadAllText(path);
var stopwatch = Stopwatch.StartNew();
var lexer = new Lexer(code);
var tokens = lexer.Tokenize();
var parser = new Parser(tokens);
var statements = parser.Parse();
interpreter.Run(statements);
stopwatch.Stop();
Console.WriteLine($"\n⏱ Execution Time: {stopwatch.ElapsedMilliseconds} ms");
}
catch (Exception ex)
{
Console.WriteLine($"❌ Error during file execution: {ex.Message}");
}
}
}
}