public class org.jruby.ast.CallNode extends org.jruby.ast.Node implements org.jruby.ast.types.INameNode, org.jruby.ast.IArgumentNode, org.jruby.ast.BlockAcceptingNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ast.CallNode
  super_class: org.jruby.ast.Node
{
  private final org.jruby.ast.Node receiverNode;
    descriptor: Lorg/jruby/ast/Node;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.jruby.ast.Node argsNode;
    descriptor: Lorg/jruby/ast/Node;
    flags: (0x0002) ACC_PRIVATE

  protected org.jruby.ast.Node iterNode;
    descriptor: Lorg/jruby/ast/Node;
    flags: (0x0004) ACC_PROTECTED

  private org.jruby.RubySymbol name;
    descriptor: Lorg/jruby/RubySymbol;
    flags: (0x0002) ACC_PRIVATE

  private final boolean isLazy;
    descriptor: Z
    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 46
            ldc Lorg/jruby/ast/CallNode;
            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 org.jruby.ast.CallNode.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.jruby.lexer.yacc.ISourcePosition, org.jruby.ast.Node, org.jruby.RubySymbol, org.jruby.ast.Node, org.jruby.ast.Node, boolean);
    descriptor: (Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/ast/Node;Lorg/jruby/RubySymbol;Lorg/jruby/ast/Node;Lorg/jruby/ast/Node;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=7
        start local 0 // org.jruby.ast.CallNode this
        start local 1 // org.jruby.lexer.yacc.ISourcePosition position
        start local 2 // org.jruby.ast.Node receiverNode
        start local 3 // org.jruby.RubySymbol name
        start local 4 // org.jruby.ast.Node argsNode
        start local 5 // org.jruby.ast.Node iterNode
        start local 6 // boolean isLazy
         0: .line 55
            aload 0 /* this */
            aload 1 /* position */
            aload 2 /* receiverNode */
            invokevirtual org.jruby.ast.Node.containsVariableAssignment:()Z
            ifne 4
         1: .line 56
            aload 4 /* argsNode */
            ifnull 2
            aload 4 /* argsNode */
            invokevirtual org.jruby.ast.Node.containsVariableAssignment:()Z
            ifne 4
         2: .line 57
      StackMap locals: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol org.jruby.ast.Node org.jruby.ast.Node int
      StackMap stack: uninitialized-this org.jruby.lexer.yacc.ISourcePosition
            aload 5 /* iterNode */
            ifnull 3
            aload 5 /* iterNode */
            invokevirtual org.jruby.ast.Node.containsVariableAssignment:()Z
            ifne 4
      StackMap locals: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol org.jruby.ast.Node org.jruby.ast.Node int
      StackMap stack: uninitialized-this org.jruby.lexer.yacc.ISourcePosition
         3: iconst_0
            goto 5
      StackMap locals: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol org.jruby.ast.Node org.jruby.ast.Node int
      StackMap stack: uninitialized-this org.jruby.lexer.yacc.ISourcePosition
         4: iconst_1
      StackMap locals: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol org.jruby.ast.Node org.jruby.ast.Node int
      StackMap stack: uninitialized-this org.jruby.lexer.yacc.ISourcePosition int
         5: invokespecial org.jruby.ast.Node.<init>:(Lorg/jruby/lexer/yacc/ISourcePosition;Z)V
         6: .line 59
            getstatic org.jruby.ast.CallNode.$assertionsDisabled:Z
            ifne 7
            aload 2 /* receiverNode */
            ifnonnull 7
            new java.lang.AssertionError
            dup
            ldc "receiverNode is not null"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         7: .line 61
      StackMap locals: org.jruby.ast.CallNode org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol org.jruby.ast.Node org.jruby.ast.Node int
      StackMap stack:
            aload 0 /* this */
            aload 3 /* name */
            putfield org.jruby.ast.CallNode.name:Lorg/jruby/RubySymbol;
         8: .line 62
            aload 0 /* this */
            aload 2 /* receiverNode */
            putfield org.jruby.ast.CallNode.receiverNode:Lorg/jruby/ast/Node;
         9: .line 63
            aload 0 /* this */
            aload 4 /* argsNode */
            putfield org.jruby.ast.CallNode.argsNode:Lorg/jruby/ast/Node;
        10: .line 64
            aload 0 /* this */
            aload 5 /* iterNode */
            putfield org.jruby.ast.CallNode.iterNode:Lorg/jruby/ast/Node;
        11: .line 65
            aload 0 /* this */
            iload 6 /* isLazy */
            putfield org.jruby.ast.CallNode.isLazy:Z
        12: .line 66
            aload 0 /* this */
            invokevirtual org.jruby.ast.CallNode.setNewline:()V
        13: .line 67
            return
        end local 6 // boolean isLazy
        end local 5 // org.jruby.ast.Node iterNode
        end local 4 // org.jruby.ast.Node argsNode
        end local 3 // org.jruby.RubySymbol name
        end local 2 // org.jruby.ast.Node receiverNode
        end local 1 // org.jruby.lexer.yacc.ISourcePosition position
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   14     0          this  Lorg/jruby/ast/CallNode;
            0   14     1      position  Lorg/jruby/lexer/yacc/ISourcePosition;
            0   14     2  receiverNode  Lorg/jruby/ast/Node;
            0   14     3          name  Lorg/jruby/RubySymbol;
            0   14     4      argsNode  Lorg/jruby/ast/Node;
            0   14     5      iterNode  Lorg/jruby/ast/Node;
            0   14     6        isLazy  Z
    MethodParameters:
              Name  Flags
      position      
      receiverNode  
      name          
      argsNode      
      iterNode      
      isLazy        

  public org.jruby.ast.NodeType getNodeType();
    descriptor: ()Lorg/jruby/ast/NodeType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.CallNode this
         0: .line 70
            getstatic org.jruby.ast.NodeType.CALLNODE:Lorg/jruby/ast/NodeType;
            areturn
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/CallNode;

  public <T> T accept(org.jruby.ast.visitor.NodeVisitor<T>);
    descriptor: (Lorg/jruby/ast/visitor/NodeVisitor;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ast.CallNode this
        start local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
         0: .line 78
            aload 1 /* iVisitor */
            aload 0 /* this */
            invokeinterface org.jruby.ast.visitor.NodeVisitor.visitCallNode:(Lorg/jruby/ast/CallNode;)Ljava/lang/Object;
            areturn
        end local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/jruby/ast/CallNode;
            0    1     1  iVisitor  Lorg/jruby/ast/visitor/NodeVisitor<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lorg/jruby/ast/visitor/NodeVisitor<TT;>;)TT;
    MethodParameters:
          Name  Flags
      iVisitor  

  public org.jruby.ast.Node getIterNode();
    descriptor: ()Lorg/jruby/ast/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.CallNode this
         0: .line 82
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.iterNode:Lorg/jruby/ast/Node;
            areturn
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/CallNode;

  public org.jruby.ast.Node setIterNode(org.jruby.ast.Node);
    descriptor: (Lorg/jruby/ast/Node;)Lorg/jruby/ast/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ast.CallNode this
        start local 1 // org.jruby.ast.Node iterNode
         0: .line 86
            aload 0 /* this */
            aload 1 /* iterNode */
            putfield org.jruby.ast.CallNode.iterNode:Lorg/jruby/ast/Node;
         1: .line 88
            aload 0 /* this */
            areturn
        end local 1 // org.jruby.ast.Node iterNode
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/jruby/ast/CallNode;
            0    2     1  iterNode  Lorg/jruby/ast/Node;
    MethodParameters:
          Name  Flags
      iterNode  

  public org.jruby.ast.Node getArgsNode();
    descriptor: ()Lorg/jruby/ast/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.CallNode this
         0: .line 96
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.argsNode:Lorg/jruby/ast/Node;
            areturn
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/CallNode;

  public org.jruby.ast.Node setArgsNode(org.jruby.ast.Node);
    descriptor: (Lorg/jruby/ast/Node;)Lorg/jruby/ast/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ast.CallNode this
        start local 1 // org.jruby.ast.Node argsNode
         0: .line 105
            aload 0 /* this */
            aload 1 /* argsNode */
            putfield org.jruby.ast.CallNode.argsNode:Lorg/jruby/ast/Node;
         1: .line 107
            aload 1 /* argsNode */
            areturn
        end local 1 // org.jruby.ast.Node argsNode
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/jruby/ast/CallNode;
            0    2     1  argsNode  Lorg/jruby/ast/Node;
    MethodParameters:
          Name  Flags
      argsNode  

  public org.jruby.RubySymbol getName();
    descriptor: ()Lorg/jruby/RubySymbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.CallNode this
         0: .line 116
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.name:Lorg/jruby/RubySymbol;
            areturn
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/CallNode;

  public org.jruby.ast.Node getReceiverNode();
    descriptor: ()Lorg/jruby/ast/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.CallNode this
         0: .line 125
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.receiverNode:Lorg/jruby/ast/Node;
            areturn
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/CallNode;

  public boolean isLazy();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.CallNode this
         0: .line 134
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.isLazy:Z
            ireturn
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/CallNode;

  public java.util.List<org.jruby.ast.Node> childNodes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.ast.CallNode this
         0: .line 138
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.receiverNode:Lorg/jruby/ast/Node;
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.argsNode:Lorg/jruby/ast/Node;
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.iterNode:Lorg/jruby/ast/Node;
            invokestatic org.jruby.ast.Node.createList:(Lorg/jruby/ast/Node;Lorg/jruby/ast/Node;Lorg/jruby/ast/Node;)Ljava/util/List;
            areturn
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/CallNode;
    Signature: ()Ljava/util/List<Lorg/jruby/ast/Node;>;

  protected java.lang.String toStringInternal();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.CallNode this
         0: .line 143
            aload 0 /* this */
            getfield org.jruby.ast.CallNode.isLazy:Z
            ifeq 1
            ldc "lazy"
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // org.jruby.ast.CallNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/ast/CallNode;
}
SourceFile: "CallNode.java"