diff --git a/MycroForge.CLI/Program.cs b/MycroForge.CLI/Program.cs index 7a5ff4a..e47b520 100644 --- a/MycroForge.CLI/Program.cs +++ b/MycroForge.CLI/Program.cs @@ -1,5 +1,4 @@ using System.CommandLine; -using MycroForge.CLI; using MycroForge.CLI.Extensions; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; @@ -22,29 +21,3 @@ catch(Exception e) { Console.WriteLine(e.Message); } - - -// using MycroForge.CLI.CodeGen; -// using MycroForge.Parsing; -// -// var src = new Tester().Rewrite(); -// Console.WriteLine(src); -// -// class Tester : PythonSourceModifier -// { -// public Tester() : base(File.ReadAllText("scripts/user.py")) -// { -// -// } -// -// public override object? VisitAssignment(PythonParser.AssignmentContext context) -// { -// Console.WriteLine(GetOriginalText(context)); -// return base.VisitAssignment(context); -// } -// } - - -// using MycroForge.CLI.CodeGen; -// var src = new EntityModifier(await File.ReadAllTextAsync("scripts/user.py")).Rewrite(); -// Console.WriteLine(src); \ No newline at end of file