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