From c1f28bd80ebb202873d94b56845a249f5e0a4ced Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Wed, 21 Apr 2021 23:29:14 +0200 Subject: [PATCH] Code cleanup --- source/tlang/compiler/symbols/typing.d | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/source/tlang/compiler/symbols/typing.d b/source/tlang/compiler/symbols/typing.d index 2cd83e2..cc93b12 100644 --- a/source/tlang/compiler/symbols/typing.d +++ b/source/tlang/compiler/symbols/typing.d @@ -2,19 +2,6 @@ module compiler.symbols.typing; 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 { /** @@ -33,7 +20,7 @@ public class Number : Type { /* Number of bytes (1,2,4,8) */ private ubyte width; - + this(string name) { super(name);