1 implementation of CreateSyntaxTree
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\SyntaxTreeFactory\AbstractSyntaxTreeFactoryService.cs (1)
23
public 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)
367
newTree = treeFactory.
CreateSyntaxTree
(Attributes.SyntaxTreeFilePath, options, existingTree.Encoding, LoadTextOptions.ChecksumAlgorithm, existingRoot);
544
var tree = factory.
CreateSyntaxTree
(attributes.SyntaxTreeFilePath, options, encoding, checksumAlgorithm, newRoot);
Workspace\Solution\DocumentState_LinkedFileReuse.cs (1)
106
var newTree = treeFactory.
CreateSyntaxTree
(