public class org.jruby.ast.BackRefNode extends org.jruby.ast.Node
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ast.BackRefNode
  super_class: org.jruby.ast.Node
{
  private final char type;
    descriptor: C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.jruby.lexer.yacc.ISourcePosition, int);
    descriptor: (Lorg/jruby/lexer/yacc/ISourcePosition;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.ast.BackRefNode this
        start local 1 // org.jruby.lexer.yacc.ISourcePosition position
        start local 2 // int type
         0: .line 57
            aload 0 /* this */
            aload 1 /* position */
            iconst_0
            invokespecial org.jruby.ast.Node.<init>:(Lorg/jruby/lexer/yacc/ISourcePosition;Z)V
         1: .line 58
            aload 0 /* this */
            iload 2 /* type */
            i2c
            putfield org.jruby.ast.BackRefNode.type:C
         2: .line 59
            new java.lang.StringBuilder
            dup
            ldc "$"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* type */
            i2c
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.jruby.util.DefinedMessage.byText:(Ljava/lang/String;)Lorg/jruby/util/DefinedMessage;
            pop
         3: .line 60
            return
        end local 2 // int type
        end local 1 // org.jruby.lexer.yacc.ISourcePosition position
        end local 0 // org.jruby.ast.BackRefNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/jruby/ast/BackRefNode;
            0    4     1  position  Lorg/jruby/lexer/yacc/ISourcePosition;
            0    4     2      type  I
    MethodParameters:
          Name  Flags
      position  
      type      

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

  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.BackRefNode this
        start local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
         0: .line 71
            aload 1 /* iVisitor */
            aload 0 /* this */
            invokeinterface org.jruby.ast.visitor.NodeVisitor.visitBackRefNode:(Lorg/jruby/ast/BackRefNode;)Ljava/lang/Object;
            areturn
        end local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
        end local 0 // org.jruby.ast.BackRefNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/jruby/ast/BackRefNode;
            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.util.ByteList getByteName();
    descriptor: ()Lorg/jruby/util/ByteList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.jruby.ast.BackRefNode this
         0: .line 75
            new org.jruby.util.ByteList
            dup
            iconst_2
            newarray 8
            dup
            iconst_0
            bipush 36
            bastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.jruby.ast.BackRefNode.type:C
            i2b
            bastore
            getstatic org.jcodings.specific.USASCIIEncoding.INSTANCE:Lorg/jcodings/specific/USASCIIEncoding;
            invokespecial org.jruby.util.ByteList.<init>:([BLorg/jcodings/Encoding;)V
            areturn
        end local 0 // org.jruby.ast.BackRefNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/BackRefNode;

  public char getType();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.BackRefNode this
         0: .line 84
            aload 0 /* this */
            getfield org.jruby.ast.BackRefNode.type:C
            ireturn
        end local 0 // org.jruby.ast.BackRefNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/BackRefNode;

  public java.util.List<org.jruby.ast.Node> childNodes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.BackRefNode this
         0: .line 88
            getstatic org.jruby.ast.BackRefNode.EMPTY_LIST:Ljava/util/List;
            areturn
        end local 0 // org.jruby.ast.BackRefNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/BackRefNode;
    Signature: ()Ljava/util/List<Lorg/jruby/ast/Node;>;
}
SourceFile: "BackRefNode.java"