3 instantiations of ParsedSyntaxTree
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Workspace\LanguageServices\CSharpSyntaxTreeFactoryService.cs (1)
66
return new
ParsedSyntaxTree
(lazyText: null, (CSharpSyntaxNode)root, (CSharpParseOptions)options, filePath, encoding, checksumAlgorithm);
Workspace\LanguageServices\CSharpSyntaxTreeFactoryService.ParsedSyntaxTree.cs (2)
71
=> (root == _root && options == Options) ? this : new
ParsedSyntaxTree
((root == _root) ? _lazyText : null, (CSharpSyntaxNode)root, (CSharpParseOptions)options, FilePath, Encoding, _checksumAlgorithm);
74
=> (path == FilePath) ? this : new
ParsedSyntaxTree
(_lazyText, _root, Options, path, Encoding, _checksumAlgorithm);