1 write to _isByRef
ILCompiler.ReadyToRun (1)
Compiler\DependencyAnalysis\ReadyToRun\TypeHandle.cs (1)
23
_isByRef
= _type.IsByRef;
9 references to _isByRef
ILCompiler.ReadyToRun (9)
Compiler\DependencyAnalysis\ReadyToRun\TypeHandle.cs (9)
24
if (
_isByRef
)
35
return
_isByRef
== other.
_isByRef
&& _type == other._type;
40
public bool IsNull() { return _type == null && !
_isByRef
; }
41
public bool IsValueType() { if (
_isByRef
) return false; return _type.IsValueType; }
42
public bool IsPointerType() { if (
_isByRef
) return false; return _type.IsPointer; }
62
if (
_isByRef
)
76
if (
_isByRef
)
99
if (
_isByRef
)