Added `Type`
parent
11c22c176a
commit
9732815f77
|
@ -1,5 +1,7 @@
|
||||||
module compiler.symbols.typing;
|
module compiler.symbols.typing;
|
||||||
|
|
||||||
|
import compiler.symbols.data;
|
||||||
|
|
||||||
// public interface Type
|
// public interface Type
|
||||||
// {
|
// {
|
||||||
// public
|
// 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: 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