5 references to PT_VOID
Microsoft.CSharp (5)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
275
Debug.Assert(pt != PredefinedType.
PT_VOID
); // use getVoidType()
Microsoft\CSharp\RuntimeBinder\Semantics\PredefinedMembers.cs (3)
150
SIG_CLASS_TYVAR = (int)PredefinedType.
PT_VOID
+ 1, // next element in signature is index of class tyvar
249
case (MethodSignatureEnum)PredefinedType.
PT_VOID
:
503
new PredefinedMethodInfo( PREDEFMETH.PM_G_OPTIONAL_CTOR, PredefinedType.PT_G_OPTIONAL, PredefinedName.PN_CTOR, MethodCallingConventionEnum.Instance, ACCESS.ACC_PUBLIC, 0, new int[] { (int)PredefinedType.
PT_VOID
, 1, (int)MethodSignatureEnum.SIG_CLASS_TYVAR, 0 }),
Microsoft\CSharp\RuntimeBinder\Semantics\Types\VoidType.cs (1)
21
public override bool IsPredefType(PredefinedType pt) => pt == PredefinedType.
PT_VOID
;