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