final class com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry implements com.oracle.truffle.object.LinkedImmutableMap$LinkedEntry<java.lang.Object, com.oracle.truffle.api.object.Property>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry
  super_class: java.lang.Object
{
  private final com.oracle.truffle.api.object.Property value;
    descriptor: Lcom/oracle/truffle/api/object/Property;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Object prevKey;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Object nextKey;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(com.oracle.truffle.api.object.Property, java.lang.Object, java.lang.Object);
    descriptor: (Lcom/oracle/truffle/api/object/Property;Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
        start local 1 // com.oracle.truffle.api.object.Property value
        start local 2 // java.lang.Object prevKey
        start local 3 // java.lang.Object nextKey
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 71
            aload 0 /* this */
            aload 1 /* value */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.api.object.Property
            putfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
         2: .line 72
            aload 0 /* this */
            aload 2 /* prevKey */
            putfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.prevKey:Ljava/lang/Object;
         3: .line 73
            aload 0 /* this */
            aload 3 /* nextKey */
            putfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.nextKey:Ljava/lang/Object;
         4: .line 74
            return
        end local 3 // java.lang.Object nextKey
        end local 2 // java.lang.Object prevKey
        end local 1 // com.oracle.truffle.api.object.Property value
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            0    5     1    value  Lcom/oracle/truffle/api/object/Property;
            0    5     2  prevKey  Ljava/lang/Object;
            0    5     3  nextKey  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      value    
      prevKey  
      nextKey  

  public java.lang.Object getKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
         0: .line 78
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
            invokevirtual com.oracle.truffle.api.object.Property.getKey:()Ljava/lang/Object;
            areturn
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;

  public com.oracle.truffle.api.object.Property getValue();
    descriptor: ()Lcom/oracle/truffle/api/object/Property;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
         0: .line 83
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
            areturn
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;

  public com.oracle.truffle.api.object.Property setValue(com.oracle.truffle.api.object.Property);
    descriptor: (Lcom/oracle/truffle/api/object/Property;)Lcom/oracle/truffle/api/object/Property;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
        start local 1 // com.oracle.truffle.api.object.Property value
         0: .line 88
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // com.oracle.truffle.api.object.Property value
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            0    1     1  value  Lcom/oracle/truffle/api/object/Property;
    MethodParameters:
       Name  Flags
      value  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
         0: .line 93
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
            invokevirtual java.lang.Object.hashCode:()I
            ireturn
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
        start local 1 // java.lang.Object obj
         0: .line 98
            aload 1 /* obj */
            instanceof com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry
            ifne 2
         1: .line 99
            iconst_0
            ireturn
         2: .line 101
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry
            astore 2 /* other */
        start local 2 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry other
         3: .line 102
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
            aload 2 /* other */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.prevKey:Ljava/lang/Object;
            aload 2 /* other */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.prevKey:Ljava/lang/Object;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.nextKey:Ljava/lang/Object;
            aload 2 /* other */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.nextKey:Ljava/lang/Object;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
            iconst_1
            ireturn
      StackMap locals: com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry
      StackMap stack:
         4: iconst_0
            ireturn
        end local 2 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry other
        end local 1 // java.lang.Object obj
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            0    5     1    obj  Ljava/lang/Object;
            3    5     2  other  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
    MethodParameters:
      Name  Flags
      obj   

  public java.lang.Object getPrevKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
         0: .line 107
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.prevKey:Ljava/lang/Object;
            areturn
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;

  public java.lang.Object getNextKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
         0: .line 112
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.nextKey:Ljava/lang/Object;
            areturn
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;

  public com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry withValue(com.oracle.truffle.api.object.Property);
    descriptor: (Lcom/oracle/truffle/api/object/Property;)Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
        start local 1 // com.oracle.truffle.api.object.Property value
         0: .line 117
            new com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry
            dup
            aload 1 /* value */
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.prevKey:Ljava/lang/Object;
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.nextKey:Ljava/lang/Object;
            invokespecial com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.<init>:(Lcom/oracle/truffle/api/object/Property;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 1 // com.oracle.truffle.api.object.Property value
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            0    1     1  value  Lcom/oracle/truffle/api/object/Property;
    MethodParameters:
       Name  Flags
      value  

  public com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry withPrevKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
        start local 1 // java.lang.Object prevKey
         0: .line 122
            new com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
            aload 1 /* prevKey */
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.nextKey:Ljava/lang/Object;
            invokespecial com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.<init>:(Lcom/oracle/truffle/api/object/Property;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object prevKey
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            0    1     1  prevKey  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      prevKey  

  public com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry withNextKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
        start local 1 // java.lang.Object nextKey
         0: .line 127
            new com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.prevKey:Ljava/lang/Object;
            aload 1 /* nextKey */
            invokespecial com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.<init>:(Lcom/oracle/truffle/api/object/Property;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object nextKey
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            0    1     1  nextKey  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      nextKey  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
         0: .line 132
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "@"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.hashCode:()I
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.value:Lcom/oracle/truffle/api/object/Property;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;

  public com.oracle.truffle.object.LinkedImmutableMap$LinkedEntry withNextKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lcom/oracle/truffle/object/LinkedImmutableMap$LinkedEntry;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.withNextKey:(Ljava/lang/Object;)Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object setValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.api.object.Property
            invokevirtual com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.setValue:(Lcom/oracle/truffle/api/object/Property;)Lcom/oracle/truffle/api/object/Property;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.oracle.truffle.object.LinkedImmutableMap$LinkedEntry withPrevKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lcom/oracle/truffle/object/LinkedImmutableMap$LinkedEntry;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.withPrevKey:(Ljava/lang/Object;)Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.oracle.truffle.object.LinkedImmutableMap$LinkedEntry withValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lcom/oracle/truffle/object/LinkedImmutableMap$LinkedEntry;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.api.object.Property
            invokevirtual com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.withValue:(Lcom/oracle/truffle/api/object/Property;)Lcom/oracle/truffle/object/TriePropertyMap$LinkedPropertyEntry;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object getValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry.getValue:()Lcom/oracle/truffle/api/object/Property;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lcom/oracle/truffle/object/LinkedImmutableMap$LinkedEntry<Ljava/lang/Object;Lcom/oracle/truffle/api/object/Property;>;
SourceFile: "TriePropertyMap.java"
NestHost: com.oracle.truffle.object.TriePropertyMap
InnerClasses:
  public abstract LinkedEntry = com.oracle.truffle.object.LinkedImmutableMap$LinkedEntry of com.oracle.truffle.object.LinkedImmutableMap
  final LinkedPropertyEntry = com.oracle.truffle.object.TriePropertyMap$LinkedPropertyEntry of com.oracle.truffle.object.TriePropertyMap