From b80888a7bbfd6f8e65ca506038a9408eaf9e2373 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sat, 13 Aug 2022 15:57:51 +0100 Subject: [PATCH] Removed debugging output --- source/repl_main.c | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/source/repl_main.c b/source/repl_main.c index c7c033b..e187860 100644 --- a/source/repl_main.c +++ b/source/repl_main.c @@ -105,42 +105,6 @@ void runBinary(unsigned char* tb, size_t size) { Interpreter interpreter; initInterpreter(&interpreter, tb, size); runInterpreter(&interpreter); - - // //DEBUG - // { - // printf("testing name\n"); - // Literal lit; - - // printf("VALUE: "); - // if (getScopeVariable(interpreter.scope, TO_IDENTIFIER_LITERAL("name"), &lit)) { - // printLiteral(lit); - - // printf("\nTYPE: "); - // printLiteral(getLiteralDictionary(&interpreter.scope->types, TO_IDENTIFIER_LITERAL("name"))); - // } - // else { - // printf("Failed"); - // } - // printf("\n\n"); - // } - - // { - // printf("testing something\n"); - // Literal lit; - - // printf("VALUE: "); - // if (getScopeVariable(interpreter.scope, TO_IDENTIFIER_LITERAL("something"), &lit)) { - // printLiteral(lit); - - // printf("\nTYPE: "); - // printLiteral(getLiteralDictionary(&interpreter.scope->types, TO_IDENTIFIER_LITERAL("something"))); - // } - // else { - // printf("Failed"); - // } - // printf("\n\n"); - // } - freeInterpreter(&interpreter); }