From 11c22c176a6a44df4db18dc554da1d0c2faabef2 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 16 Apr 2021 22:50:53 +0200 Subject: [PATCH] Figured out what to do --- source/tlang/compiler/symbols/typing.d | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 source/tlang/compiler/symbols/typing.d diff --git a/source/tlang/compiler/symbols/typing.d b/source/tlang/compiler/symbols/typing.d new file mode 100644 index 0000000..bb766b9 --- /dev/null +++ b/source/tlang/compiler/symbols/typing.d @@ -0,0 +1,14 @@ +module compiler.symbols.typing; + +// 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`) */ \ No newline at end of file