Added comment for Struct class

entity_declaration_type_checking
Tristan B. V. Kildaire 2021-04-22 10:40:44 +02:00
parent c1f28bd80e
commit e2280fbfa8
1 changed files with 7 additions and 0 deletions

View File

@ -39,6 +39,13 @@ public class Module : Entity, Container
}
}
/**
* Struct
*
* A Struct can only contain Entity's
* that are Variables (TODO: Enforce in parser)
* TODO: Possibly enforce here too
*/
public class Struct : Type, Container
{
private Statement[] statements;