示例#1
0
文件: Binder.cs 项目: zuvys/roslyn
 internal virtual bool AreNullableAnnotationsGloballyEnabled()
 {
     return(Next.AreNullableAnnotationsGloballyEnabled());
 }
示例#2
0
 internal virtual bool AreNullableAnnotationsGloballyEnabled()
 {
     RoslynDebug.Assert(Next is object);
     return(Next.AreNullableAnnotationsGloballyEnabled());
 }