public abstract class org.jruby.lexer.LexerSource
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.jruby.lexer.LexerSource
  super_class: java.lang.Object
{
  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  protected org.jruby.RubyArray scriptLines;
    descriptor: Lorg/jruby/RubyArray;
    flags: (0x0004) ACC_PROTECTED

  public void <init>(java.lang.String, int, org.jruby.RubyArray);
    descriptor: (Ljava/lang/String;ILorg/jruby/RubyArray;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.jruby.lexer.LexerSource this
        start local 1 // java.lang.String sourceName
        start local 2 // int lineOffset
        start local 3 // org.jruby.RubyArray scriptLines
         0: .line 55
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 56
            aload 0 /* this */
            aload 1 /* sourceName */
            putfield org.jruby.lexer.LexerSource.name:Ljava/lang/String;
         2: .line 57
            aload 0 /* this */
            iload 2 /* lineOffset */
            putfield org.jruby.lexer.LexerSource.lineOffset:I
         3: .line 58
            aload 0 /* this */
            aload 3 /* scriptLines */
            putfield org.jruby.lexer.LexerSource.scriptLines:Lorg/jruby/RubyArray;
         4: .line 59
            return
        end local 3 // org.jruby.RubyArray scriptLines
        end local 2 // int lineOffset
        end local 1 // java.lang.String sourceName
        end local 0 // org.jruby.lexer.LexerSource this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/jruby/lexer/LexerSource;
            0    5     1   sourceName  Ljava/lang/String;
            0    5     2   lineOffset  I
            0    5     3  scriptLines  Lorg/jruby/RubyArray;
    MethodParameters:
             Name  Flags
      sourceName   
      lineOffset   
      scriptLines  

  public java.lang.String getFilename();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.lexer.LexerSource this
         0: .line 66
            aload 0 /* this */
            getfield org.jruby.lexer.LexerSource.name:Ljava/lang/String;
            areturn
        end local 0 // org.jruby.lexer.LexerSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/lexer/LexerSource;

  public int getLineOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.lexer.LexerSource this
         0: .line 70
            aload 0 /* this */
            getfield org.jruby.lexer.LexerSource.lineOffset:I
            ireturn
        end local 0 // org.jruby.lexer.LexerSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/lexer/LexerSource;

  public void encodeExistingScriptLines(org.jcodings.Encoding);
    descriptor: (Lorg/jcodings/Encoding;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.jruby.lexer.LexerSource this
        start local 1 // org.jcodings.Encoding encoding
         0: .line 74
            aload 0 /* this */
            getfield org.jruby.lexer.LexerSource.scriptLines:Lorg/jruby/RubyArray;
            ifnonnull 1
            return
         1: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.lexer.LexerSource.scriptLines:Lorg/jruby/RubyArray;
            invokevirtual org.jruby.RubyArray.getLength:()I
            istore 2 /* length */
        start local 2 // int length
         2: .line 77
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 7
         4: .line 78
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.lexer.LexerSource.scriptLines:Lorg/jruby/RubyArray;
            lconst_0
            invokevirtual org.jruby.RubyArray.eltOk:(J)Lorg/jruby/runtime/builtin/IRubyObject;
            checkcast org.jruby.RubyString
            astore 4 /* line */
        start local 4 // org.jruby.RubyString line
         5: .line 80
            aload 4 /* line */
            aload 1 /* encoding */
            invokevirtual org.jruby.RubyString.setEncoding:(Lorg/jcodings/Encoding;)V
        end local 4 // org.jruby.RubyString line
         6: .line 77
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            iload 2 /* length */
            if_icmplt 4
        end local 3 // int i
         8: .line 82
            return
        end local 2 // int length
        end local 1 // org.jcodings.Encoding encoding
        end local 0 // org.jruby.lexer.LexerSource this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/jruby/lexer/LexerSource;
            0    9     1  encoding  Lorg/jcodings/Encoding;
            2    9     2    length  I
            3    8     3         i  I
            5    6     4      line  Lorg/jruby/RubyString;
    MethodParameters:
          Name  Flags
      encoding  

  public abstract org.jcodings.Encoding getEncoding();
    descriptor: ()Lorg/jcodings/Encoding;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void setEncoding(org.jcodings.Encoding);
    descriptor: (Lorg/jcodings/Encoding;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      encoding  

  public abstract org.jruby.util.ByteList gets();
    descriptor: ()Lorg/jruby/util/ByteList;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int getOffset();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.channels.Channel getRemainingAsChannel();
    descriptor: ()Ljava/nio/channels/Channel;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract org.jruby.runtime.builtin.IRubyObject getRemainingAsIO();
    descriptor: ()Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "LexerSource.java"