Files
Convention-CSharp/Convention/[Symbolization]/Symbolization.cs

19 lines
342 B
C#
Raw Normal View History

2025-06-30 00:52:43 +08:00
using System;
using System.Text;
using System.Threading.Tasks;
namespace Convention.Symbolization
{
2025-06-30 20:20:26 +08:00
public class SymbolizationRunner
2025-06-30 00:52:43 +08:00
{
2025-07-03 21:50:26 +08:00
private SymbolizationContext Context;
2025-06-30 00:52:43 +08:00
2025-07-03 21:50:26 +08:00
public void Compile(string path)
2025-07-02 15:21:26 +08:00
{
2025-07-03 21:50:26 +08:00
Context = new();
Context.Compile(new ToolFile(path));
2025-07-02 15:21:26 +08:00
}
2025-06-30 00:52:43 +08:00
}
}