IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
ObjectAccessor.cs
Go to the documentation of this file.
2{
3
4#if FIRST_PASS == false && EXPORTER == false && IMPORTER == false
5
9 internal sealed class ObjectAccessor : Accessor<object>
10 {
11
12 FieldAccessor<object, bool> __init;
13
18 public ObjectAccessor(AccessorTypeResolver resolver) :
19 base(resolver, "java.lang.Object")
20 {
21
22 }
23
27 public bool GetInit(object self) => GetField(ref __init, "__<init>").GetValue(self);
28
29 }
30
31#endif
32
33}