4 references to CamelCaseResult
Microsoft.CodeAnalysis.Workspaces (4)
PatternMatching\AllLowerCamelCaseMatcher.cs (1)
77
return new
CamelCaseResult
(
PatternMatching\CamelCaseResult.cs (2)
38
=>
new
(fromStart, Contiguous, MatchCount, MatchedSpansInReverse);
43
return new
CamelCaseResult
(FromStart, Contiguous, MatchCount + 1, MatchedSpansInReverse);
PatternMatching\PatternMatcher.cs (1)
550
var camelCaseResult = new
CamelCaseResult
(firstMatch == 0, contiguous.Value, matchCount, null);