Added `parenTo(Statement)` to `Statement` which will allow us to link stuff toghether in containers

parser_exception_before
Tristan B. Kildaire 2021-03-29 21:48:59 +02:00
parent adc9457a0f
commit afcf1609b6
1 changed files with 9 additions and 1 deletions

View File

@ -438,7 +438,15 @@ public class Program
}
}
public class Statement {}
public class Statement
{
private Container container;
public final void parentTo(Container container)
{
this.container = container;
}
}
public enum AccessorType
{