TypedEntity

- Added a `setType(string)` method to update the internal `type` field
This commit is contained in:
Tristan B. Velloza Kildaire 2023-04-24 09:02:34 +02:00
parent 94d6b07b51
commit c0bc9580db
1 changed files with 5 additions and 0 deletions

View File

@ -230,6 +230,11 @@ public class TypedEntity : Entity
{
return type;
}
public void setType(string type)
{
this.type = type;
}
}
public import tlang.compiler.symbols.containers;