public class org.jruby.ast.RestArgNode extends org.jruby.ast.ArgumentNode implements org.jruby.ast.types.INameNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ast.RestArgNode
  super_class: org.jruby.ast.ArgumentNode
{
  public void <init>(org.jruby.lexer.yacc.ISourcePosition, org.jruby.RubySymbol, int);
    descriptor: (Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/RubySymbol;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.ast.RestArgNode this
        start local 1 // org.jruby.lexer.yacc.ISourcePosition position
        start local 2 // org.jruby.RubySymbol name
        start local 3 // int index
         0: .line 42
            aload 0 /* this */
            aload 1 /* position */
            aload 2 /* name */
            iload 3 /* index */
            invokespecial org.jruby.ast.ArgumentNode.<init>:(Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/RubySymbol;I)V
         1: .line 43
            return
        end local 3 // int index
        end local 2 // org.jruby.RubySymbol name
        end local 1 // org.jruby.lexer.yacc.ISourcePosition position
        end local 0 // org.jruby.ast.RestArgNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/jruby/ast/RestArgNode;
            0    2     1  position  Lorg/jruby/lexer/yacc/ISourcePosition;
            0    2     2      name  Lorg/jruby/RubySymbol;
            0    2     3     index  I
    MethodParameters:
          Name  Flags
      position  
      name      
      index     

  public void <init>(org.jruby.ast.ArgumentNode);
    descriptor: (Lorg/jruby/ast/ArgumentNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.ast.RestArgNode this
        start local 1 // org.jruby.ast.ArgumentNode argNode
         0: .line 47
            aload 0 /* this */
            aload 1 /* argNode */
            invokevirtual org.jruby.ast.ArgumentNode.getPosition:()Lorg/jruby/lexer/yacc/ISourcePosition;
            aload 1 /* argNode */
            invokevirtual org.jruby.ast.ArgumentNode.getName:()Lorg/jruby/RubySymbol;
            aload 1 /* argNode */
            invokevirtual org.jruby.ast.ArgumentNode.getIndex:()I
            invokespecial org.jruby.ast.RestArgNode.<init>:(Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/RubySymbol;I)V
         1: .line 48
            return
        end local 1 // org.jruby.ast.ArgumentNode argNode
        end local 0 // org.jruby.ast.RestArgNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ast/RestArgNode;
            0    2     1  argNode  Lorg/jruby/ast/ArgumentNode;
    MethodParameters:
         Name  Flags
      argNode  

  public boolean isAnonymous();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.jruby.ast.RestArgNode this
         0: .line 51
            aload 0 /* this */
            invokevirtual org.jruby.ast.RestArgNode.getName:()Lorg/jruby/RubySymbol;
            astore 1 /* argName */
        start local 1 // org.jruby.RubySymbol argName
         1: .line 53
            aload 1 /* argName */
            ifnull 2
            aload 1 /* argName */
            invokevirtual org.jruby.RubySymbol.getBytes:()Lorg/jruby/util/ByteList;
            invokevirtual org.jruby.util.ByteList.realSize:()I
            ifeq 2
            iconst_0
            ireturn
      StackMap locals: org.jruby.RubySymbol
      StackMap stack:
         2: iconst_1
            ireturn
        end local 1 // org.jruby.RubySymbol argName
        end local 0 // org.jruby.ast.RestArgNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jruby/ast/RestArgNode;
            1    3     1  argName  Lorg/jruby/RubySymbol;

  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.RestArgNode this
         0: .line 58
            getstatic org.jruby.ast.NodeType.RESTARG:Lorg/jruby/ast/NodeType;
            areturn
        end local 0 // org.jruby.ast.RestArgNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/RestArgNode;

  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.RestArgNode this
        start local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
         0: .line 63
            aload 1 /* iVisitor */
            aload 0 /* this */
            invokeinterface org.jruby.ast.visitor.NodeVisitor.visitRestArgNode:(Lorg/jruby/ast/RestArgNode;)Ljava/lang/Object;
            areturn
        end local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
        end local 0 // org.jruby.ast.RestArgNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/jruby/ast/RestArgNode;
            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  
}
SourceFile: "RestArgNode.java"