17 references to FactoryName
VisualBasicSyntaxGenerator (17)
GreenNodes\GreenNodeFactoryWriter.vb (4)
85If nodeStructure.NodeKinds.Count >= 2 And Not _parseTree.NodeKinds.ContainsKey(FactoryName(nodeStructure)) Then 130_writer.WriteLine(" AndAlso SyntaxFacts.Is{1}({0}.Kind))", name, FactoryName(parent) + child.Name) 133_writer.WriteLine(" AndAlso SyntaxFacts.Is{1}({0}.Kind))", name, FactoryName(parent) + child.Name) 164factoryFunctionName = FactoryName(nodeStructure)
RedNodes\RedNodeFactoryWriter.vb (6)
137Dim name = "Get" + FactoryName(nodeStructure) + child.Name + "Kind" 183factoryFunctionName = FactoryName(nodeStructure) 471Dim getterName = "Get" + FactoryName(nodeStructure) + child.Name + "Kind" 537Dim getterName = "Get" + FactoryName(nodeStructure) + child.Name + "Kind" 652factoryFunctionName = FactoryName(nodeStructure) 749ElseIf nodeStructure.NodeKinds.Count >= 2 AndAlso FactoryName(nodeStructure) = FactoryName(nodeKind) Then
RedNodes\RedNodeWriter.vb (2)
286_writer.WriteLine(" Dim _child = If(Me.{0} IsNot Nothing, Me.{0}, SyntaxFactory.{1}())", child.Name, FactoryName(childStructure)) 703Dim factory = FactoryName(nodeStructure)
RedNodes\SyntaxFactsWriter.vb (1)
146GenerateSyntaxFact(FactoryName(nodeStructure) + child.Name, kinds, Not child.InternalSyntaxFacts)
Tests\TestWriter.vb (1)
124Dim functionName As String = If(nodeKind Is Nothing, FactoryName(nodeStructure), FactoryName(nodeKind))
Util\WriteCsvNames.vb (2)
118If nodeStructure.NodeKinds.Count >= 2 And Not _parseTree.NodeKinds.ContainsKey(FactoryName(nodeStructure)) Then 152factoryFunctionName = FactoryName(nodeStructure)
Util\WriteUtils.vb (1)
65Dim name = FactoryName(nodeStructure)