4 instantiations of InitialState
Microsoft.CodeAnalysis.CSharp (4)
Compilation\SyntaxTreeSemanticModel.cs (3)
1203return MethodBodySemanticModel.Create(this, symbol, new MethodBodySemanticModel.InitialState(exprDecl, binder: binder)); 1230new MethodBodySemanticModel.InitialState(node, binder: new ExecutableCodeBinder(node, scriptInitializer, new ScriptLocalScopeBinder(_globalStatementLabels, defaultOuter())))); 1250return MethodBodySemanticModel.Create(this, symbol, new MethodBodySemanticModel.InitialState(memberDecl, binder: binder));
Compiler\MethodCompiler.cs (1)
1994forSemanticModel = new MethodBodySemanticModel.InitialState(syntaxNode, methodBodyForSemanticModel, bodyBinder, snapshotManager, remappedSymbols);
3 references to InitialState
Microsoft.CodeAnalysis.CSharp (3)
Compilation\MethodBodySemanticModel.cs (1)
61internal static MethodBodySemanticModel Create(SyntaxTreeSemanticModel containingSemanticModel, MethodSymbol owner, InitialState initialState)
Compiler\MethodCompiler.cs (2)
1006MethodBodySemanticModel.InitialState forSemanticModel = default; 1898out MethodBodySemanticModel.InitialState forSemanticModel)