1 implementation of CreateSyntaxTree
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\SyntaxTreeFactory\AbstractSyntaxTreeFactoryService.cs (1)
23public abstract SyntaxTree CreateSyntaxTree(string filePath, ParseOptions options, Encoding encoding, SourceHashAlgorithm checksumAlgorithm, SyntaxNode root);
3 references to CreateSyntaxTree
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Solution\DocumentState.cs (2)
367newTree = treeFactory.CreateSyntaxTree(Attributes.SyntaxTreeFilePath, options, existingTree.Encoding, LoadTextOptions.ChecksumAlgorithm, existingRoot); 544var tree = factory.CreateSyntaxTree(attributes.SyntaxTreeFilePath, options, encoding, checksumAlgorithm, newRoot);
Workspace\Solution\DocumentState_LinkedFileReuse.cs (1)
106var newTree = treeFactory.CreateSyntaxTree(