3 references to CreateSemanticModel
Microsoft.CodeAnalysis (3)
Compilation\Compilation.cs (1)
327
/// to get a semantic model. Otherwise, it creates a new semantic model using <see cref="
CreateSemanticModel
(SyntaxTree, SemanticModelOptions)"/>.
DiagnosticAnalyzer\CachingSemanticModelProvider.cs (2)
65
_createSemanticModel = tree => compilation.
CreateSemanticModel
(tree, options: default);
73
: _compilation.
CreateSemanticModel
(tree, options);