1 implementation of CreateSyntaxTree
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\SyntaxTreeFactory\AbstractSyntaxTreeFactoryService.cs (1)
20public abstract SyntaxTree CreateSyntaxTree(string filePath, ParseOptions options, SourceText text, Encoding encoding, SourceHashAlgorithm checksumAlgorithm, SyntaxNode root);
2 references to CreateSyntaxTree
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\DocumentState_LinkedFileReuse.cs (1)
155var newTree = treeFactory.CreateSyntaxTree(
Workspace\Solution\SourceGeneratedDocumentState.cs (1)
107var newTree = factory.CreateSyntaxTree(documentIdentity.FilePath, parseOptions, generatedSourceText, generatedSourceText.Encoding, generatedSourceText.ChecksumAlgorithm, syntaxNode);