final class jdk.nashorn.api.tree.PropertyTreeImpl extends jdk.nashorn.api.tree.TreeImpl implements jdk.nashorn.api.tree.PropertyTree
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: jdk.nashorn.api.tree.PropertyTreeImpl
  super_class: jdk.nashorn.api.tree.TreeImpl
{
  private final jdk.nashorn.api.tree.ExpressionTree key;
    descriptor: Ljdk/nashorn/api/tree/ExpressionTree;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final jdk.nashorn.api.tree.ExpressionTree value;
    descriptor: Ljdk/nashorn/api/tree/ExpressionTree;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final jdk.nashorn.api.tree.FunctionExpressionTree getter;
    descriptor: Ljdk/nashorn/api/tree/FunctionExpressionTree;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final jdk.nashorn.api.tree.FunctionExpressionTree setter;
    descriptor: Ljdk/nashorn/api/tree/FunctionExpressionTree;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean isStatic;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean isComputed;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(jdk.nashorn.internal.ir.PropertyNode, jdk.nashorn.api.tree.ExpressionTree, jdk.nashorn.api.tree.ExpressionTree, jdk.nashorn.api.tree.FunctionExpressionTree, jdk.nashorn.api.tree.FunctionExpressionTree);
    descriptor: (Ljdk/nashorn/internal/ir/PropertyNode;Ljdk/nashorn/api/tree/ExpressionTree;Ljdk/nashorn/api/tree/ExpressionTree;Ljdk/nashorn/api/tree/FunctionExpressionTree;Ljdk/nashorn/api/tree/FunctionExpressionTree;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
        start local 1 // jdk.nashorn.internal.ir.PropertyNode node
        start local 2 // jdk.nashorn.api.tree.ExpressionTree key
        start local 3 // jdk.nashorn.api.tree.ExpressionTree value
        start local 4 // jdk.nashorn.api.tree.FunctionExpressionTree getter
        start local 5 // jdk.nashorn.api.tree.FunctionExpressionTree setter
         0: .line 42
            aload 0 /* this */
            aload 1 /* node */
            invokespecial jdk.nashorn.api.tree.TreeImpl.<init>:(Ljdk/nashorn/internal/ir/Node;)V
         1: .line 43
            aload 0 /* this */
            aload 2 /* key */
            putfield jdk.nashorn.api.tree.PropertyTreeImpl.key:Ljdk/nashorn/api/tree/ExpressionTree;
         2: .line 44
            aload 0 /* this */
            aload 3 /* value */
            putfield jdk.nashorn.api.tree.PropertyTreeImpl.value:Ljdk/nashorn/api/tree/ExpressionTree;
         3: .line 45
            aload 0 /* this */
            aload 4 /* getter */
            putfield jdk.nashorn.api.tree.PropertyTreeImpl.getter:Ljdk/nashorn/api/tree/FunctionExpressionTree;
         4: .line 46
            aload 0 /* this */
            aload 5 /* setter */
            putfield jdk.nashorn.api.tree.PropertyTreeImpl.setter:Ljdk/nashorn/api/tree/FunctionExpressionTree;
         5: .line 47
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual jdk.nashorn.internal.ir.PropertyNode.isStatic:()Z
            putfield jdk.nashorn.api.tree.PropertyTreeImpl.isStatic:Z
         6: .line 48
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual jdk.nashorn.internal.ir.PropertyNode.isComputed:()Z
            putfield jdk.nashorn.api.tree.PropertyTreeImpl.isComputed:Z
         7: .line 49
            return
        end local 5 // jdk.nashorn.api.tree.FunctionExpressionTree setter
        end local 4 // jdk.nashorn.api.tree.FunctionExpressionTree getter
        end local 3 // jdk.nashorn.api.tree.ExpressionTree value
        end local 2 // jdk.nashorn.api.tree.ExpressionTree key
        end local 1 // jdk.nashorn.internal.ir.PropertyNode node
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Ljdk/nashorn/api/tree/PropertyTreeImpl;
            0    8     1    node  Ljdk/nashorn/internal/ir/PropertyNode;
            0    8     2     key  Ljdk/nashorn/api/tree/ExpressionTree;
            0    8     3   value  Ljdk/nashorn/api/tree/ExpressionTree;
            0    8     4  getter  Ljdk/nashorn/api/tree/FunctionExpressionTree;
            0    8     5  setter  Ljdk/nashorn/api/tree/FunctionExpressionTree;
    MethodParameters:
        Name  Flags
      node    final
      key     final
      value   final
      getter  final
      setter  final

  public jdk.nashorn.api.tree.Tree$Kind getKind();
    descriptor: ()Ljdk/nashorn/api/tree/Tree$Kind;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
         0: .line 53
            getstatic jdk.nashorn.api.tree.Tree$Kind.PROPERTY:Ljdk/nashorn/api/tree/Tree$Kind;
            areturn
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/PropertyTreeImpl;

  public jdk.nashorn.api.tree.ExpressionTree getKey();
    descriptor: ()Ljdk/nashorn/api/tree/ExpressionTree;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
         0: .line 58
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.PropertyTreeImpl.key:Ljdk/nashorn/api/tree/ExpressionTree;
            areturn
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/PropertyTreeImpl;

  public jdk.nashorn.api.tree.ExpressionTree getValue();
    descriptor: ()Ljdk/nashorn/api/tree/ExpressionTree;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
         0: .line 63
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.PropertyTreeImpl.value:Ljdk/nashorn/api/tree/ExpressionTree;
            areturn
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/PropertyTreeImpl;

  public jdk.nashorn.api.tree.FunctionExpressionTree getGetter();
    descriptor: ()Ljdk/nashorn/api/tree/FunctionExpressionTree;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
         0: .line 68
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.PropertyTreeImpl.getter:Ljdk/nashorn/api/tree/FunctionExpressionTree;
            areturn
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/PropertyTreeImpl;

  public jdk.nashorn.api.tree.FunctionExpressionTree getSetter();
    descriptor: ()Ljdk/nashorn/api/tree/FunctionExpressionTree;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
         0: .line 73
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.PropertyTreeImpl.setter:Ljdk/nashorn/api/tree/FunctionExpressionTree;
            areturn
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/PropertyTreeImpl;

  public boolean isStatic();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
         0: .line 78
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.PropertyTreeImpl.isStatic:Z
            ireturn
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/PropertyTreeImpl;

  public boolean isComputed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
         0: .line 83
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.PropertyTreeImpl.isComputed:Z
            ireturn
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/PropertyTreeImpl;

  public <R, D> R accept(jdk.nashorn.api.tree.TreeVisitor<R, D>, );
    descriptor: (Ljdk/nashorn/api/tree/TreeVisitor;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
        start local 1 // jdk.nashorn.api.tree.TreeVisitor visitor
        start local 2 // java.lang.Object data
         0: .line 88
            aload 1 /* visitor */
            aload 0 /* this */
            aload 2 /* data */
            invokeinterface jdk.nashorn.api.tree.TreeVisitor.visitProperty:(Ljdk/nashorn/api/tree/PropertyTree;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object data
        end local 1 // jdk.nashorn.api.tree.TreeVisitor visitor
        end local 0 // jdk.nashorn.api.tree.PropertyTreeImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljdk/nashorn/api/tree/PropertyTreeImpl;
            0    1     1  visitor  Ljdk/nashorn/api/tree/TreeVisitor<TR;TD;>;
            0    1     2     data  TD;
    Signature: <R:Ljava/lang/Object;D:Ljava/lang/Object;>(Ljdk/nashorn/api/tree/TreeVisitor<TR;TD;>;TD;)TR;
    MethodParameters:
         Name  Flags
      visitor  final
      data     final
}
SourceFile: "PropertyTreeImpl.java"
InnerClasses:
  public final Kind = jdk.nashorn.api.tree.Tree$Kind of jdk.nashorn.api.tree.Tree