Code cleanup
parent
cac568178d
commit
c1f28bd80e
|
@ -2,19 +2,6 @@ module compiler.symbols.typing;
|
||||||
|
|
||||||
import compiler.symbols.data;
|
import compiler.symbols.data;
|
||||||
|
|
||||||
// public interface Type
|
|
||||||
// {
|
|
||||||
// public
|
|
||||||
// }
|
|
||||||
|
|
||||||
// public class PrimitiveType : Type
|
|
||||||
// {
|
|
||||||
|
|
||||||
// }
|
|
||||||
|
|
||||||
/* TODO: Make Container interface (for `getParent` and `getMembers`), then Clazz and PrimitiveType inherit Type, fuck lmao
|
|
||||||
/* TODO: Type then ofc Entity (for `name`) */
|
|
||||||
|
|
||||||
public class Type : Entity
|
public class Type : Entity
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -33,7 +20,7 @@ public class Number : Type
|
||||||
{
|
{
|
||||||
/* Number of bytes (1,2,4,8) */
|
/* Number of bytes (1,2,4,8) */
|
||||||
private ubyte width;
|
private ubyte width;
|
||||||
|
|
||||||
this(string name)
|
this(string name)
|
||||||
{
|
{
|
||||||
super(name);
|
super(name);
|
||||||
|
|
Loading…
Reference in New Issue