diff --git a/source/tlang/compiler/symbols/typing.d b/source/tlang/compiler/symbols/typing.d index 002d18a..2cd83e2 100644 --- a/source/tlang/compiler/symbols/typing.d +++ b/source/tlang/compiler/symbols/typing.d @@ -31,6 +31,9 @@ public class Type : Entity public class Number : Type { + /* Number of bytes (1,2,4,8) */ + private ubyte width; + this(string name) { super(name); @@ -39,9 +42,6 @@ public class Number : Type public class Integer : Number { - /* Number of bytes (1,2,4,8) */ - private ubyte width; - this(string name) { super(name);