1 implementation of ParseSyntaxTree
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\SyntaxTreeFactory\AbstractSyntaxTreeFactoryService.cs (1)
24
public abstract SyntaxTree
ParseSyntaxTree
(string filePath, ParseOptions options, SourceText text, CancellationToken cancellationToken);
2 references to ParseSyntaxTree
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\DocumentState.cs (1)
157
var tree = treeFactory.
ParseSyntaxTree
(filePath, options, text, cancellationToken);
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
SolutionTests\SolutionTests.cs (1)
3800
var strongTree = factory.
ParseSyntaxTree
("dummy", dummyProject.ParseOptions, text, CancellationToken.None);