diff --git a/source/tlang/compiler/codegen/emit/dgen.d b/source/tlang/compiler/codegen/emit/dgen.d index 8b0f30ff..f9408a95 100644 --- a/source/tlang/compiler/codegen/emit/dgen.d +++ b/source/tlang/compiler/codegen/emit/dgen.d @@ -109,6 +109,11 @@ public final class DCodeEmitter : CodeEmitter LiteralValue literalValueInstr = cast(LiteralValue)instruction; return to!(string)(literalValueInstr.data); + } + /* FetchValueVar */ + else if(cast(FetchValueVar)instruction) + { + } /* BinOpInstr */ else if(cast(BinOpInstr)instruction) @@ -118,7 +123,7 @@ public final class DCodeEmitter : CodeEmitter return transform(binOpInstr.lhs)~to!(string)(getCharacter(binOpInstr.operator))~transform(binOpInstr.rhs); } - return ""; + return ""; }