public class org.jruby.parser.RubyParserResult
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.parser.RubyParserResult
  super_class: java.lang.Object
{
  public static final java.util.List<org.jruby.ast.Node> EMPTY_BEGIN_LIST;
    descriptor: Ljava/util/List;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/List<Lorg/jruby/ast/Node;>;

  private java.util.List<org.jruby.ast.Node> beginNodes;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/jruby/ast/Node;>;

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

  private int endOffset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private org.jruby.runtime.DynamicScope scope;
    descriptor: Lorg/jruby/runtime/DynamicScope;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 45
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putstatic org.jruby.parser.RubyParserResult.EMPTY_BEGIN_LIST:Ljava/util/List;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.parser.RubyParserResult this
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 50
            aload 0 /* this */
            iconst_m1
            putfield org.jruby.parser.RubyParserResult.endOffset:I
         2: .line 44
            return
        end local 0 // org.jruby.parser.RubyParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/parser/RubyParserResult;

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

  public org.jruby.runtime.DynamicScope getScope();
    descriptor: ()Lorg/jruby/runtime/DynamicScope;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.parser.RubyParserResult this
         0: .line 58
            aload 0 /* this */
            getfield org.jruby.parser.RubyParserResult.scope:Lorg/jruby/runtime/DynamicScope;
            areturn
        end local 0 // org.jruby.parser.RubyParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/parser/RubyParserResult;

  public void setScope(org.jruby.runtime.DynamicScope);
    descriptor: (Lorg/jruby/runtime/DynamicScope;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.parser.RubyParserResult this
        start local 1 // org.jruby.runtime.DynamicScope scope
         0: .line 62
            aload 0 /* this */
            aload 1 /* scope */
            putfield org.jruby.parser.RubyParserResult.scope:Lorg/jruby/runtime/DynamicScope;
         1: .line 63
            return
        end local 1 // org.jruby.runtime.DynamicScope scope
        end local 0 // org.jruby.parser.RubyParserResult this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/jruby/parser/RubyParserResult;
            0    2     1  scope  Lorg/jruby/runtime/DynamicScope;
    MethodParameters:
       Name  Flags
      scope  

  public void setAST(org.jruby.ast.Node);
    descriptor: (Lorg/jruby/ast/Node;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.parser.RubyParserResult this
        start local 1 // org.jruby.ast.Node ast
         0: .line 70
            aload 0 /* this */
            aload 1 /* ast */
            putfield org.jruby.parser.RubyParserResult.ast:Lorg/jruby/ast/Node;
         1: .line 71
            return
        end local 1 // org.jruby.ast.Node ast
        end local 0 // org.jruby.parser.RubyParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/parser/RubyParserResult;
            0    2     1   ast  Lorg/jruby/ast/Node;
    MethodParameters:
      Name  Flags
      ast   

  public void addBeginNode(org.jruby.ast.PreExeNode);
    descriptor: (Lorg/jruby/ast/PreExeNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jruby.parser.RubyParserResult this
        start local 1 // org.jruby.ast.PreExeNode node
         0: .line 74
            aload 0 /* this */
            getfield org.jruby.parser.RubyParserResult.beginNodes:Ljava/util/List;
            ifnonnull 1
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.jruby.parser.RubyParserResult.beginNodes:Ljava/util/List;
         1: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.parser.RubyParserResult.beginNodes:Ljava/util/List;
            aload 1 /* node */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 76
            return
        end local 1 // org.jruby.ast.PreExeNode node
        end local 0 // org.jruby.parser.RubyParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/parser/RubyParserResult;
            0    3     1  node  Lorg/jruby/ast/PreExeNode;
    MethodParameters:
      Name  Flags
      node  

  public java.util.List<org.jruby.ast.Node> getBeginNodes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.parser.RubyParserResult this
         0: .line 79
            aload 0 /* this */
            getfield org.jruby.parser.RubyParserResult.beginNodes:Ljava/util/List;
            ifnonnull 1
            getstatic org.jruby.parser.RubyParserResult.EMPTY_BEGIN_LIST:Ljava/util/List;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.jruby.parser.RubyParserResult.beginNodes:Ljava/util/List;
      StackMap locals:
      StackMap stack: java.util.List
         2: areturn
        end local 0 // org.jruby.parser.RubyParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/parser/RubyParserResult;
    Signature: ()Ljava/util/List<Lorg/jruby/ast/Node;>;

  public int getEndOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.parser.RubyParserResult this
         0: .line 83
            aload 0 /* this */
            getfield org.jruby.parser.RubyParserResult.endOffset:I
            ireturn
        end local 0 // org.jruby.parser.RubyParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/parser/RubyParserResult;

  public void setEndOffset(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.parser.RubyParserResult this
        start local 1 // int endOffset
         0: .line 87
            aload 0 /* this */
            iload 1 /* endOffset */
            putfield org.jruby.parser.RubyParserResult.endOffset:I
         1: .line 88
            return
        end local 1 // int endOffset
        end local 0 // org.jruby.parser.RubyParserResult this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/jruby/parser/RubyParserResult;
            0    2     1  endOffset  I
    MethodParameters:
           Name  Flags
      endOffset  
}
SourceFile: "RubyParserResult.java"