Base:
property
Compilation
Microsoft.CodeAnalysis.CSharp.CSharpSemanticModel.Compilation
17 references to Compilation
Microsoft.CodeAnalysis.CSharp (17)
Compilation\AttributeSemanticModel.cs (3)
110
return NullableWalker.AnalyzeAndRewrite(
Compilation
, symbol: null, boundRoot, binder, initialState: null, diagnostics, createSnapshots, out snapshotManager, ref remappedSymbols);
115
NullableWalker.AnalyzeWithoutRewrite(
Compilation
, symbol: null, boundRoot, binder, diagnostics, createSnapshots);
120
return IsNullableAnalysisEnabledIn(
Compilation
, (AttributeSyntax)Root);
Compilation\InitializerSemanticModel.cs (3)
263
return NullableWalker.AnalyzeAndRewrite(
Compilation
, MemberSymbol, boundRoot, binder, initialState: null, diagnostics, createSnapshots, out snapshotManager, ref remappedSymbols);
268
NullableWalker.AnalyzeWithoutRewrite(
Compilation
, MemberSymbol, boundRoot, binder, diagnostics, createSnapshots);
284
Compilation
.IsNullableAnalysisEnabledIn(value);
Compilation\MemberSemanticModel.cs (5)
981
? (MethodSymbol)
Compilation
.GetWellKnownTypeMember(WellKnownMember.System_IAsyncDisposable__DisposeAsync)
982
: (MethodSymbol)
Compilation
.GetSpecialTypeMember(SpecialMember.System_IDisposable__Dispose);
1727
if (!IsNullableAnalysisEnabled() &&
Compilation
.IsNullableAnalysisEnabledAlways)
1927
if (!isNullableAnalysisEnabled && !
Compilation
.IsNullableAnalysisEnabledAlways)
1997
Debug.Assert(
Compilation
.IsNullableAnalysisEnabledAlways);
Compilation\MemberSemanticModel.SpeculativeMemberSemanticModel.cs (2)
52
return NullableWalker.AnalyzeAndRewrite(
Compilation
, MemberSymbol as MethodSymbol, boundRoot, binder, initialState: null, diagnostics, createSnapshots: false, out snapshotManager, ref remappedSymbols);
57
NullableWalker.AnalyzeWithoutRewrite(
Compilation
, MemberSymbol as MethodSymbol, boundRoot, binder, diagnostics, createSnapshots);
Compilation\MethodBodySemanticModel.cs (4)
294
var afterInitializersState = NullableWalker.GetAfterInitializersState(
Compilation
, MemberSymbol, boundRoot);
295
return NullableWalker.AnalyzeAndRewrite(
Compilation
, MemberSymbol, boundRoot, binder, afterInitializersState, diagnostics, createSnapshots, out snapshotManager, ref remappedSymbols);
300
NullableWalker.AnalyzeWithoutRewrite(
Compilation
, MemberSymbol, boundRoot, binder, diagnostics, createSnapshots);
305
return
Compilation
.IsNullableAnalysisEnabledIn((MethodSymbol)MemberSymbol);