From b305f4fbfafa6940e975267a42c1a89a60b3a8d8 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 16 Jul 2020 18:38:59 -0700 Subject: [PATCH] Document some of the undocumented command-line switches --- src/dscanner/main.d | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/dscanner/main.d b/src/dscanner/main.d index 621572b..42c4fef 100644 --- a/src/dscanner/main.d +++ b/src/dscanner/main.d @@ -348,6 +348,11 @@ Options: Prints the number of tokens in the given source files. If no files are specified, input is read from stdin. + --tokenDump + Dump token information from the lexer. This option is mostly useful for + developing D-Scanner or its supporting libraries itself. You probably + dont't want to use this, and this feature may be removed in the future. + --highlight Syntax-highlight the given source file. The resulting HTML will be written to standard output. If no file is specified, input is read @@ -361,6 +366,10 @@ Options: --recursiveImports Similar to "--imports", but lists imports of imports recursively. + -I + Specify that imported the given directory should be searched for + imported modules. + --syntaxCheck , -s Lexes and parses sourceFile, printing the line and column number of any syntax errors to stdout. One error or warning is printed per line, @@ -423,7 +432,8 @@ Options: Generates a default configuration file for the static analysis checks, --skipTests - Does not analyze in the unittests. Only works if --styleCheck.`, + Does not analyze code in unittests. Only works if --styleCheck + is specified.`, programName, defaultErrorFormat); }