public class org.eclipse.jetty.http.Http1FieldPreEncoder implements org.eclipse.jetty.http.HttpFieldPreEncoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.http.Http1FieldPreEncoder
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.Http1FieldPreEncoder this
         0: .line 28
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.jetty.http.Http1FieldPreEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/http/Http1FieldPreEncoder;

  public org.eclipse.jetty.http.HttpVersion getHttpVersion();
    descriptor: ()Lorg/eclipse/jetty/http/HttpVersion;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.Http1FieldPreEncoder this
         0: .line 37
            getstatic org.eclipse.jetty.http.HttpVersion.HTTP_1_0:Lorg/eclipse/jetty/http/HttpVersion;
            areturn
        end local 0 // org.eclipse.jetty.http.Http1FieldPreEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/http/Http1FieldPreEncoder;

  public byte[] getEncodedField(org.eclipse.jetty.http.HttpHeader, java.lang.String, java.lang.String);
    descriptor: (Lorg/eclipse/jetty/http/HttpHeader;Ljava/lang/String;Ljava/lang/String;)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.eclipse.jetty.http.Http1FieldPreEncoder this
        start local 1 // org.eclipse.jetty.http.HttpHeader header
        start local 2 // java.lang.String headerString
        start local 3 // java.lang.String value
         0: .line 46
            aload 1 /* header */
            ifnull 7
         1: .line 48
            aload 1 /* header */
            invokevirtual org.eclipse.jetty.http.HttpHeader.getBytesColonSpace:()[B
            arraylength
            istore 4 /* cbl */
        start local 4 // int cbl
         2: .line 49
            aload 1 /* header */
            invokevirtual org.eclipse.jetty.http.HttpHeader.getBytesColonSpace:()[B
            iload 4 /* cbl */
            aload 3 /* value */
            invokevirtual java.lang.String.length:()I
            iadd
            iconst_2
            iadd
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 5 /* bytes */
        start local 5 // byte[] bytes
         3: .line 50
            aload 3 /* value */
            getstatic java.nio.charset.StandardCharsets.ISO_8859_1:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            iconst_0
            aload 5 /* bytes */
            iload 4 /* cbl */
            aload 3 /* value */
            invokevirtual java.lang.String.length:()I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 51
            aload 5 /* bytes */
            aload 5 /* bytes */
            arraylength
            iconst_2
            isub
            bipush 13
            bastore
         5: .line 52
            aload 5 /* bytes */
            aload 5 /* bytes */
            arraylength
            iconst_1
            isub
            bipush 10
            bastore
         6: .line 53
            aload 5 /* bytes */
            areturn
        end local 5 // byte[] bytes
        end local 4 // int cbl
         7: .line 56
      StackMap locals:
      StackMap stack:
            aload 2 /* headerString */
            getstatic java.nio.charset.StandardCharsets.ISO_8859_1:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            astore 4 /* n */
        start local 4 // byte[] n
         8: .line 57
            aload 3 /* value */
            getstatic java.nio.charset.StandardCharsets.ISO_8859_1:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            astore 5 /* v */
        start local 5 // byte[] v
         9: .line 58
            aload 4 /* n */
            aload 4 /* n */
            arraylength
            iconst_2
            iadd
            aload 5 /* v */
            arraylength
            iadd
            iconst_2
            iadd
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 6 /* bytes */
        start local 6 // byte[] bytes
        10: .line 59
            aload 6 /* bytes */
            aload 4 /* n */
            arraylength
            bipush 58
            bastore
        11: .line 60
            aload 6 /* bytes */
            aload 4 /* n */
            arraylength
            iconst_1
            iadd
            bipush 32
            bastore
        12: .line 61
            aload 5 /* v */
            iconst_0
            aload 6 /* bytes */
            aload 4 /* n */
            arraylength
            iconst_2
            iadd
            aload 5 /* v */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 62
            aload 6 /* bytes */
            aload 6 /* bytes */
            arraylength
            iconst_2
            isub
            bipush 13
            bastore
        14: .line 63
            aload 6 /* bytes */
            aload 6 /* bytes */
            arraylength
            iconst_1
            isub
            bipush 10
            bastore
        15: .line 65
            aload 6 /* bytes */
            areturn
        end local 6 // byte[] bytes
        end local 5 // byte[] v
        end local 4 // byte[] n
        end local 3 // java.lang.String value
        end local 2 // java.lang.String headerString
        end local 1 // org.eclipse.jetty.http.HttpHeader header
        end local 0 // org.eclipse.jetty.http.Http1FieldPreEncoder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/eclipse/jetty/http/Http1FieldPreEncoder;
            0   16     1        header  Lorg/eclipse/jetty/http/HttpHeader;
            0   16     2  headerString  Ljava/lang/String;
            0   16     3         value  Ljava/lang/String;
            2    7     4           cbl  I
            3    7     5         bytes  [B
            8   16     4             n  [B
            9   16     5             v  [B
           10   16     6         bytes  [B
    MethodParameters:
              Name  Flags
      header        
      headerString  
      value         
}
SourceFile: "Http1FieldPreEncoder.java"