6 references to ComplexSegmentIndex
Microsoft.NET.Sdk.StaticWebAssets.Tasks (6)
Utils\Globbing\StaticWebAssetGlobMatcher.cs (6)
162var complexSegmentIndex = state.ComplexSegmentIndex;
335if (state.ExtensionSegmentIndex == 0 && state.ComplexSegmentIndex == 0)
371complexIndex = ComplexSegmentIndex;
482internal readonly MatchState NextExtension(int extensionIndex) => new(Node, MatchStage.Extension, SegmentIndex, extensionIndex, ComplexSegmentIndex);
484internal readonly MatchState NextComplex() => new(Node, MatchStage.Complex, SegmentIndex, ExtensionSegmentIndex, ComplexSegmentIndex + 1);
488return $"Node: {Node}, Stage: {Stage}, SegmentIndex: {SegmentIndex}, ExtensionIndex: {ExtensionSegmentIndex}, ComplexSegmentIndex: {ComplexSegmentIndex}";