1 instantiation of SpecializedPhase
Microsoft.TemplateEngine.Core (1)
Operations\PhasedOperation.cs (1)
45SpecializedPhase target = new SpecializedPhase
14 references to SpecializedPhase
Microsoft.TemplateEngine.Core (14)
Operations\PhasedOperation.cs (14)
29Stack<List<SpecializedPhase>> targetParents = new Stack<List<SpecializedPhase>>(); 31List<SpecializedPhase> currentTarget = new List<SpecializedPhase>(); 45SpecializedPhase target = new SpecializedPhase 70currentTarget = new List<SpecializedPhase>(); 80List<SpecializedPhase> children = currentTarget; 92private readonly IReadOnlyList<SpecializedPhase> _entryPoints; 93private SpecializedPhase? _currentPhase; 95public Implementation(PhasedOperation definition, IReadOnlyList<IToken> config, IReadOnlyList<SpecializedPhase> entryPoints, bool initialState) 111IReadOnlyList<SpecializedPhase> nextPhases = _currentPhase?.Next ?? _entryPoints; 112SpecializedPhase? match = nextPhases.FirstOrDefault(x => x.Match == token); 135Next = new List<SpecializedPhase>(); 141public List<SpecializedPhase> Next { get; }