From b305f4fbfafa6940e975267a42c1a89a60b3a8d8 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 16 Jul 2020 18:38:59 -0700 Subject: [PATCH 1/2] 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); } From 0f37040b6f1535fa5db224654fa0bdf89eeac01d Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Fri, 17 Jul 2020 01:23:18 -0700 Subject: [PATCH 2/2] Fix the wording of the -I documentation --- src/dscanner/main.d | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/dscanner/main.d b/src/dscanner/main.d index 42c4fef..aa28f76 100644 --- a/src/dscanner/main.d +++ b/src/dscanner/main.d @@ -367,8 +367,9 @@ Options: Similar to "--imports", but lists imports of imports recursively. -I - Specify that imported the given directory should be searched for - imported modules. + Specify that the given directory should be searched for imported + modules. This option can be passed multiple times to specify multiple + directories. --syntaxCheck , -s Lexes and parses sourceFile, printing the line and column number of