diff --git a/source/tlang/compiler/codegen/instruction.d b/source/tlang/compiler/codegen/instruction.d index 6a5d91e9..688604ab 100644 --- a/source/tlang/compiler/codegen/instruction.d +++ b/source/tlang/compiler/codegen/instruction.d @@ -109,6 +109,21 @@ public final class LiteralValue : Value } } +/* FIXME: Implement this */ +/** +* TODO: This should take in: +* +* 1. The string literal +* 2. It should assign it to an interning pool and get the ID (associate one with the string literal if equal/in-the-pool) +*/ +public final class StringLiteral : Value +{ + this() + { + + } +} + /** * BinOpInstr instruction *