コード例 #1
0
ファイル: SyntaxExtensions.cs プロジェクト: stark-lang/stark
 internal static bool IsTypeInContextWhichNeedsDynamicAttribute(this IdentifierNameSyntax typeNode)
 {
     Debug.Assert(typeNode != null);
     return(SyntaxFacts.IsInTypeOnlyContext(typeNode) && IsInContextWhichNeedsDynamicAttribute(typeNode));
 }