diff --git a/src/dscanner/main.d b/src/dscanner/main.d index 621572b..aa28f76 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,11 @@ Options: --recursiveImports Similar to "--imports", but lists imports of imports recursively. + -I + 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 any syntax errors to stdout. One error or warning is printed per line, @@ -423,7 +433,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); }