Added `Type`
parent
11c22c176a
commit
9732815f77
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue