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