From a8a88c86e14b4d852237ee88b43fa17dde6b3a4f Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Sun, 22 Jan 2023 15:13:11 +0200 Subject: [PATCH] Command-line - Cleaned up comments that are now complete --- source/tlang/commandline/commands.d | 8 -------- 1 file changed, 8 deletions(-) diff --git a/source/tlang/commandline/commands.d b/source/tlang/commandline/commands.d index aafe633..40447e4 100644 --- a/source/tlang/commandline/commands.d +++ b/source/tlang/commandline/commands.d @@ -27,10 +27,6 @@ struct compileCommand @ArgPositional("source file", "The source file to compile") string sourceFile; - // @CommandRawListArg - // string[] d; - // TODO: Get array - void onExecute() { writeln("Compiling source file: "~sourceFile); @@ -98,8 +94,6 @@ struct parseCommand /* TODO: Add missing implementation for this */ void onExecute() { - // TODO: Add call to typechecker here - try { /* Read the source file's data */ @@ -143,10 +137,8 @@ struct typecheckCommand @ArgPositional("source file", "The source file to typecheck") string sourceFile; - /* TODO: Add missing implementation for this */ void onExecute() { - // TODO: Add call to typechecker here try { /* Read the source file's data */