public final class com.google.protobuf.TextFormatParseLocation
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.protobuf.TextFormatParseLocation
  super_class: java.lang.Object
{
  public static final com.google.protobuf.TextFormatParseLocation EMPTY;
    descriptor: Lcom/google/protobuf/TextFormatParseLocation;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final int line;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int column;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 43
            new com.google.protobuf.TextFormatParseLocation
            dup
            iconst_m1
            iconst_m1
            invokespecial com.google.protobuf.TextFormatParseLocation.<init>:(II)V
            putstatic com.google.protobuf.TextFormatParseLocation.EMPTY:Lcom/google/protobuf/TextFormatParseLocation;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static com.google.protobuf.TextFormatParseLocation create(int, int);
    descriptor: (II)Lcom/google/protobuf/TextFormatParseLocation;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // int line
        start local 1 // int column
         0: .line 53
            iload 0 /* line */
            iconst_m1
            if_icmpne 2
            iload 1 /* column */
            iconst_m1
            if_icmpne 2
         1: .line 54
            getstatic com.google.protobuf.TextFormatParseLocation.EMPTY:Lcom/google/protobuf/TextFormatParseLocation;
            areturn
         2: .line 56
      StackMap locals:
      StackMap stack:
            iload 0 /* line */
            iflt 3
            iload 1 /* column */
            ifge 6
         3: .line 57
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
         4: .line 58
            ldc "line and column values must be >= 0: line %d, column: %d"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iload 0 /* line */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 1 /* column */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         5: .line 57
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 60
      StackMap locals:
      StackMap stack:
            new com.google.protobuf.TextFormatParseLocation
            dup
            iload 0 /* line */
            iload 1 /* column */
            invokespecial com.google.protobuf.TextFormatParseLocation.<init>:(II)V
            areturn
        end local 1 // int column
        end local 0 // int line
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    line  I
            0    7     1  column  I
    MethodParameters:
        Name  Flags
      line    
      column  

  private void <init>(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.protobuf.TextFormatParseLocation this
        start local 1 // int line
        start local 2 // int column
         0: .line 66
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 67
            aload 0 /* this */
            iload 1 /* line */
            putfield com.google.protobuf.TextFormatParseLocation.line:I
         2: .line 68
            aload 0 /* this */
            iload 2 /* column */
            putfield com.google.protobuf.TextFormatParseLocation.column:I
         3: .line 69
            return
        end local 2 // int column
        end local 1 // int line
        end local 0 // com.google.protobuf.TextFormatParseLocation this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/protobuf/TextFormatParseLocation;
            0    4     1    line  I
            0    4     2  column  I
    MethodParameters:
        Name  Flags
      line    
      column  

  public int getLine();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.protobuf.TextFormatParseLocation this
         0: .line 72
            aload 0 /* this */
            getfield com.google.protobuf.TextFormatParseLocation.line:I
            ireturn
        end local 0 // com.google.protobuf.TextFormatParseLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/protobuf/TextFormatParseLocation;

  public int getColumn();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.protobuf.TextFormatParseLocation this
         0: .line 76
            aload 0 /* this */
            getfield com.google.protobuf.TextFormatParseLocation.column:I
            ireturn
        end local 0 // com.google.protobuf.TextFormatParseLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/protobuf/TextFormatParseLocation;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.google.protobuf.TextFormatParseLocation this
         0: .line 81
            ldc "ParseLocation{line=%d, column=%d}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.google.protobuf.TextFormatParseLocation.line:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.google.protobuf.TextFormatParseLocation.column:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // com.google.protobuf.TextFormatParseLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/protobuf/TextFormatParseLocation;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.google.protobuf.TextFormatParseLocation this
        start local 1 // java.lang.Object o
         0: .line 86
            aload 1 /* o */
            aload 0 /* this */
            if_acmpne 2
         1: .line 87
            iconst_1
            ireturn
         2: .line 89
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof com.google.protobuf.TextFormatParseLocation
            ifne 4
         3: .line 90
            iconst_0
            ireturn
         4: .line 92
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast com.google.protobuf.TextFormatParseLocation
            astore 2 /* that */
        start local 2 // com.google.protobuf.TextFormatParseLocation that
         5: .line 93
            aload 0 /* this */
            getfield com.google.protobuf.TextFormatParseLocation.line:I
            aload 2 /* that */
            invokevirtual com.google.protobuf.TextFormatParseLocation.getLine:()I
            if_icmpne 6
            aload 0 /* this */
            getfield com.google.protobuf.TextFormatParseLocation.column:I
            aload 2 /* that */
            invokevirtual com.google.protobuf.TextFormatParseLocation.getColumn:()I
            if_icmpne 6
            iconst_1
            ireturn
      StackMap locals: com.google.protobuf.TextFormatParseLocation
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // com.google.protobuf.TextFormatParseLocation that
        end local 1 // java.lang.Object o
        end local 0 // com.google.protobuf.TextFormatParseLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/google/protobuf/TextFormatParseLocation;
            0    7     1     o  Ljava/lang/Object;
            5    7     2  that  Lcom/google/protobuf/TextFormatParseLocation;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.google.protobuf.TextFormatParseLocation this
         0: .line 98
            iconst_2
            newarray 10
            dup
            iconst_0
            aload 0 /* this */
            getfield com.google.protobuf.TextFormatParseLocation.line:I
            iastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.google.protobuf.TextFormatParseLocation.column:I
            iastore
            astore 1 /* values */
        start local 1 // int[] values
         1: .line 99
            aload 1 /* values */
            invokestatic java.util.Arrays.hashCode:([I)I
            ireturn
        end local 1 // int[] values
        end local 0 // com.google.protobuf.TextFormatParseLocation this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/google/protobuf/TextFormatParseLocation;
            1    2     1  values  [I
}
SourceFile: "TextFormatParseLocation.java"