3 instantiations of WordParser
Metrics (3)
src\RoslynAnalyzers\Utilities\Compiler\Extensions\UriExtensions.cs (1)
67
var parser = new
WordParser
(symbol.Name, WordParserOptions.SplitCompoundWords);
src\RoslynAnalyzers\Utilities\Compiler\WordParser.cs (2)
165
WordParser parser = new
WordParser
(text, options, prefix);
243
WordParser parser = new
WordParser
(text, options, prefix);
8 references to WordParser
Metrics (8)
src\RoslynAnalyzers\Utilities\Compiler\Extensions\UriExtensions.cs (1)
67
var
parser = new WordParser(symbol.Name, WordParserOptions.SplitCompoundWords);
src\RoslynAnalyzers\Utilities\Compiler\WordParser.cs (4)
62
/// Initializes a new instance of the <see cref="
WordParser
"/> class with the specified text and options.
81
/// Initializes a new instance of the <see cref="
WordParser
"/> class with the specified text, options and prefix.
165
WordParser
parser = new WordParser(text, options, prefix);
243
WordParser
parser = new WordParser(text, options, prefix);
src\RoslynAnalyzers\Utilities\Compiler\WordParserOptions.cs (3)
10
/// Defines the word parsing and delimiting options for use with <see cref="
WordParser
.Parse(string,WordParserOptions)"/>.
21
/// Indicates that <see cref="
WordParser
.Parse(string,WordParserOptions)"/> should ignore the mnemonic indicator characters (&) embedded within words.
26
/// Indicates that <see cref="
WordParser
.Parse(string,WordParserOptions)"/> should split compound words.