17 lines
396 B
C#
17 lines
396 B
C#
using MycroForge.Parsing;
|
|
|
|
namespace MycroForge.CLI.CodeGen;
|
|
|
|
public class EntityLinker : PythonSourceModifier
|
|
{
|
|
public EntityLinker(string source) : base(source)
|
|
{
|
|
}
|
|
|
|
public override object? VisitAssignment(PythonParser.AssignmentContext context)
|
|
{
|
|
Console.WriteLine(GetOriginalText(context));
|
|
return base.VisitAssignment(context);
|
|
}
|
|
}
|