Added `Type`

entity_declaration_type_checking
Tristan B. V. Kildaire 2021-04-16 23:44:56 +02:00
parent 11c22c176a
commit 9732815f77
1 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,7 @@
module compiler.symbols.typing;
import compiler.symbols.data;
// public interface Type
// {
// public
@ -11,4 +13,12 @@ module compiler.symbols.typing;
// }
/* TODO: Make Container interface (for `getParent` and `getMembers`), then Clazz and PrimitiveType inherit Type, fuck lmao
/* TODO: Type then ofc Entity (for `name`) */
/* TODO: Type then ofc Entity (for `name`) */
public class Type : Entity
{
this(string name)
{
super(name);
}
}