12 instantiations of BasicIntermediateNode
Microsoft.AspNetCore.Razor.Language.UnitTests (12)
Intermediate\IntermediateNodeWalkerTest.cs (12)
21new BasicIntermediateNode("Root"), 22new BasicIntermediateNode("Root->A"), 23new BasicIntermediateNode("Root->B"), 24new BasicIntermediateNode("Root->B->1"), 25new BasicIntermediateNode("Root->B->2"), 26new BasicIntermediateNode("Root->C"), 58new BasicIntermediateNode("Root"), 59new BasicIntermediateNode("Root->A"), 60new BasicIntermediateNode("Root->B"), 61new BasicIntermediateNode("Root->B->1"), 62new BasicIntermediateNode("Root->B->2"), 63new BasicIntermediateNode("Root->C"),
6 references to BasicIntermediateNode
Microsoft.AspNetCore.Razor.Language.UnitTests (6)
Intermediate\IntermediateNodeWalkerTest.cs (6)
78var basicNode = Assert.IsType<BasicIntermediateNode>(n); 79var parent = a.Length > 0 ? (BasicIntermediateNode)a[0] : null; 81Assert.Equal(ancestors[basicNode.Name], a.Cast<BasicIntermediateNode>().Select(b => b.Name)); 117public void VisitBasic(BasicIntermediateNode node)