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

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 30
            ldc Ljdk/nashorn/api/tree/NewTreeImpl;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic jdk.nashorn.api.tree.NewTreeImpl.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(jdk.nashorn.internal.ir.UnaryNode, jdk.nashorn.api.tree.ExpressionTree);
    descriptor: (Ljdk/nashorn/internal/ir/UnaryNode;Ljdk/nashorn/api/tree/ExpressionTree;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.nashorn.api.tree.NewTreeImpl this
        start local 1 // jdk.nashorn.internal.ir.UnaryNode node
        start local 2 // jdk.nashorn.api.tree.ExpressionTree constrExpr
         0: .line 34
            aload 0 /* this */
            aload 1 /* node */
            invokespecial jdk.nashorn.api.tree.ExpressionTreeImpl.<init>:(Ljdk/nashorn/internal/ir/Expression;)V
         1: .line 35
            getstatic jdk.nashorn.api.tree.NewTreeImpl.$assertionsDisabled:Z
            ifne 2
            aload 1 /* node */
            getstatic jdk.nashorn.internal.parser.TokenType.NEW:Ljdk/nashorn/internal/parser/TokenType;
            invokevirtual jdk.nashorn.internal.ir.UnaryNode.isTokenType:(Ljdk/nashorn/internal/parser/TokenType;)Z
            ifne 2
            new java.lang.AssertionError
            dup
            ldc "new expected"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 36
      StackMap locals: jdk.nashorn.api.tree.NewTreeImpl jdk.nashorn.internal.ir.UnaryNode jdk.nashorn.api.tree.ExpressionTree
      StackMap stack:
            aload 0 /* this */
            aload 2 /* constrExpr */
            putfield jdk.nashorn.api.tree.NewTreeImpl.constrExpr:Ljdk/nashorn/api/tree/ExpressionTree;
         3: .line 37
            return
        end local 2 // jdk.nashorn.api.tree.ExpressionTree constrExpr
        end local 1 // jdk.nashorn.internal.ir.UnaryNode node
        end local 0 // jdk.nashorn.api.tree.NewTreeImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Ljdk/nashorn/api/tree/NewTreeImpl;
            0    4     1        node  Ljdk/nashorn/internal/ir/UnaryNode;
            0    4     2  constrExpr  Ljdk/nashorn/api/tree/ExpressionTree;
    MethodParameters:
            Name  Flags
      node        final
      constrExpr  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.NewTreeImpl this
         0: .line 41
            getstatic jdk.nashorn.api.tree.Tree$Kind.NEW:Ljdk/nashorn/api/tree/Tree$Kind;
            areturn
        end local 0 // jdk.nashorn.api.tree.NewTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/NewTreeImpl;

  public jdk.nashorn.api.tree.ExpressionTree getConstructorExpression();
    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.NewTreeImpl this
         0: .line 46
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.NewTreeImpl.constrExpr:Ljdk/nashorn/api/tree/ExpressionTree;
            areturn
        end local 0 // jdk.nashorn.api.tree.NewTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/NewTreeImpl;

  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.NewTreeImpl this
        start local 1 // jdk.nashorn.api.tree.TreeVisitor visitor
        start local 2 // java.lang.Object data
         0: .line 51
            aload 1 /* visitor */
            aload 0 /* this */
            aload 2 /* data */
            invokeinterface jdk.nashorn.api.tree.TreeVisitor.visitNew:(Ljdk/nashorn/api/tree/NewTree;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.NewTreeImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljdk/nashorn/api/tree/NewTreeImpl;
            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: "NewTreeImpl.java"
InnerClasses:
  public final Kind = jdk.nashorn.api.tree.Tree$Kind of jdk.nashorn.api.tree.Tree