IKVM11
11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IkvmReflectionConstructorSymbol.cs
Go to the documentation of this file.
1
using
System
;
2
3
using
ConstructorInfo
=
IKVM
.
Reflection
.
ConstructorInfo
;
4
5
namespace
IKVM.CoreLib.Symbols.IkvmReflection
6
{
7
8
class
IkvmReflectionConstructorSymbol
:
IkvmReflectionMethodBaseSymbol
,
IConstructorSymbol
9
{
10
11
readonly
ConstructorInfo
_underlyingConstructor;
12
20
public
IkvmReflectionConstructorSymbol
(
IkvmReflectionSymbolContext
context,
IkvmReflectionModuleSymbol
module,
IkvmReflectionTypeSymbol
type,
ConstructorInfo
underlyingConstructor) :
21
base(context, module, type, underlyingConstructor)
22
{
23
_underlyingConstructor = underlyingConstructor ??
throw
new
ArgumentNullException(nameof(underlyingConstructor));
24
}
25
26
internal
ConstructorInfo
UnderlyingConstructor => _underlyingConstructor;
27
28
}
29
30
}
ConstructorInfo
IKVM.Reflection.ConstructorInfo ConstructorInfo
Definition
IkvmReflectionConstructorSymbol.cs:3
IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionConstructorSymbol
Definition
IkvmReflectionConstructorSymbol.cs:9
IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionConstructorSymbol.IkvmReflectionConstructorSymbol
IkvmReflectionConstructorSymbol(IkvmReflectionSymbolContext context, IkvmReflectionModuleSymbol module, IkvmReflectionTypeSymbol type, ConstructorInfo underlyingConstructor)
Initializes a new instance.
Definition
IkvmReflectionConstructorSymbol.cs:20
IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionMethodBaseSymbol
Definition
IkvmReflectionMethodBaseSymbol.cs:13
IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionModuleSymbol
Implementation of IModuleSymbol derived from System.Reflection.
Definition
IkvmReflectionModuleSymbol.cs:20
IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionSymbolContext
Holds references to symbols derived from System.Reflection.
Definition
IkvmReflectionSymbolContext.cs:22
IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionTypeSymbol
Definition
IkvmReflectionTypeSymbol.cs:22
IKVM.Reflection.ConstructorInfo
Definition
ConstructorInfo.cs:30
IKVM.CoreLib.Symbols.IConstructorSymbol
Discovers the attributes of a class constructor and provides access to constructor metadata.
Definition
IConstructorSymbol.cs:8
IKVM.CoreLib.Symbols.IkvmReflection
Definition
IkvmReflectionAssemblySymbol.cs:13
IKVM.Reflection
Definition
__MethodImplMap.cs:25
IKVM
Definition
MemoryBufferWriter.cs:7
System
Definition
HexConverter.cs:9
src
IKVM.CoreLib
Symbols
IkvmReflection
IkvmReflectionConstructorSymbol.cs
Generated by
1.12.0