7 references to Create
Microsoft.CodeAnalysis.VisualBasic (1)
Syntax\VisualBasicSyntaxTree.vb (1)
637
Return
Create
(root, options, path, encoding, diagnosticOptions:=Nothing)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (3)
Semantics\SyntaxTreeRootTests.vb (3)
15
Dim tree = VisualBasicSyntaxTree.
Create
(node)
35
Dim tree As SyntaxTree = VisualBasicSyntaxTree.
Create
(SyntaxFactory.FromClause(SyntaxFactory.CollectionRangeVariable(SyntaxFactory.ModifiedIdentifier("Nay"), SyntaxFactory.NumericLiteralExpression(SyntaxFactory.Literal(823)))))
44
Dim arbitraryTree = VisualBasicSyntaxTree.
Create
(SyntaxFactory.Attribute(SyntaxFactory.IdentifierName("Wooh")))
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (3)
Syntax\SyntaxTreeTests.vb (3)
17
Dim tree = VisualBasicSyntaxTree.
Create
(root)
26
Dim tree = VisualBasicSyntaxTree.
Create
(SyntaxFactory.ParseCompilationUnit(""), options:=Nothing, path:=Nothing, encoding:=Nothing, diagnosticOptions:=options)
193
Assert.Equal(String.Empty, VisualBasicSyntaxTree.
Create
(CType(oldTree.GetRoot, VisualBasicSyntaxNode), path:=Nothing).FilePath)