public class org.jruby.ast.RegexpNode extends org.jruby.ast.Node implements org.jruby.ast.types.ILiteralNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ast.RegexpNode
  super_class: org.jruby.ast.Node
{
  private final org.jruby.util.ByteList value;
    descriptor: Lorg/jruby/util/ByteList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.jruby.util.RegexpOptions options;
    descriptor: Lorg/jruby/util/RegexpOptions;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.jruby.lexer.yacc.ISourcePosition, org.jruby.util.ByteList, org.jruby.util.RegexpOptions);
    descriptor: (Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/util/ByteList;Lorg/jruby/util/RegexpOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.jruby.ast.RegexpNode this
        start local 1 // org.jruby.lexer.yacc.ISourcePosition position
        start local 2 // org.jruby.util.ByteList value
        start local 3 // org.jruby.util.RegexpOptions options
         0: .line 52
            aload 0 /* this */
            aload 1 /* position */
            iconst_0
            invokespecial org.jruby.ast.Node.<init>:(Lorg/jruby/lexer/yacc/ISourcePosition;Z)V
         1: .line 54
            aload 0 /* this */
            aload 2 /* value */
            putfield org.jruby.ast.RegexpNode.value:Lorg/jruby/util/ByteList;
         2: .line 55
            aload 0 /* this */
            aload 3 /* options */
            putfield org.jruby.ast.RegexpNode.options:Lorg/jruby/util/RegexpOptions;
         3: .line 56
            return
        end local 3 // org.jruby.util.RegexpOptions options
        end local 2 // org.jruby.util.ByteList value
        end local 1 // org.jruby.lexer.yacc.ISourcePosition position
        end local 0 // org.jruby.ast.RegexpNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/jruby/ast/RegexpNode;
            0    4     1  position  Lorg/jruby/lexer/yacc/ISourcePosition;
            0    4     2     value  Lorg/jruby/util/ByteList;
            0    4     3   options  Lorg/jruby/util/RegexpOptions;
    MethodParameters:
          Name  Flags
      position  
      value     
      options   

  public org.jcodings.Encoding getEncoding();
    descriptor: ()Lorg/jcodings/Encoding;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.RegexpNode this
         0: .line 59
            aload 0 /* this */
            getfield org.jruby.ast.RegexpNode.value:Lorg/jruby/util/ByteList;
            invokevirtual org.jruby.util.ByteList.getEncoding:()Lorg/jcodings/Encoding;
            areturn
        end local 0 // org.jruby.ast.RegexpNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/RegexpNode;

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

  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.RegexpNode this
        start local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
         0: .line 67
            aload 1 /* iVisitor */
            aload 0 /* this */
            invokeinterface org.jruby.ast.visitor.NodeVisitor.visitRegexpNode:(Lorg/jruby/ast/RegexpNode;)Ljava/lang/Object;
            areturn
        end local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
        end local 0 // org.jruby.ast.RegexpNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/jruby/ast/RegexpNode;
            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.RegexpOptions getOptions();
    descriptor: ()Lorg/jruby/util/RegexpOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.RegexpNode this
         0: .line 74
            aload 0 /* this */
            getfield org.jruby.ast.RegexpNode.options:Lorg/jruby/util/RegexpOptions;
            areturn
        end local 0 // org.jruby.ast.RegexpNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/RegexpNode;

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

  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.RegexpNode this
         0: .line 86
            getstatic org.jruby.ast.RegexpNode.EMPTY_LIST:Ljava/util/List;
            areturn
        end local 0 // org.jruby.ast.RegexpNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/RegexpNode;
    Signature: ()Ljava/util/List<Lorg/jruby/ast/Node;>;
}
SourceFile: "RegexpNode.java"