5 implementations of CanProduceStem
Microsoft.Extensions.FileSystemGlobbing (5)
Internal\PathSegments\CurrentPathSegment.cs (1)
10public bool CanProduceStem => false;
Internal\PathSegments\LiteralPathSegment.cs (1)
14public bool CanProduceStem => false;
Internal\PathSegments\ParentPathSegment.cs (1)
12public bool CanProduceStem => false;
Internal\PathSegments\RecursiveWildcardSegment.cs (1)
10public bool CanProduceStem => true;
Internal\PathSegments\WildcardPathSegment.cs (1)
34public bool CanProduceStem { get { return true; } }
1 reference to CanProduceStem
Microsoft.Extensions.FileSystemGlobbing (1)
Internal\PatternContexts\PatternContextLinear.cs (1)
54if (frame.InStem || segment.CanProduceStem)