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: 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 start local 1 0: iload 0
iconst_m1
if_icmpne 2
iload 1
iconst_m1
if_icmpne 2
1: getstatic com.google.protobuf.TextFormatParseLocation.EMPTY:Lcom/google/protobuf/TextFormatParseLocation;
areturn
2: StackMap locals:
StackMap stack:
iload 0
iflt 3
iload 1
ifge 6
3: StackMap locals:
StackMap stack:
new java.lang.IllegalArgumentException
dup
4: ldc "line and column values must be >= 0: line %d, column: %d"
iconst_2
anewarray java.lang.Object
dup
iconst_0
iload 0
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
aastore
dup
iconst_1
iload 1
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: invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
6: StackMap locals:
StackMap stack:
new com.google.protobuf.TextFormatParseLocation
dup
iload 0
iload 1
invokespecial com.google.protobuf.TextFormatParseLocation.<init>:(II)V
areturn
end local 1 end local 0 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 start local 1 start local 2 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
iload 1
putfield com.google.protobuf.TextFormatParseLocation.line:I
2: aload 0
iload 2
putfield com.google.protobuf.TextFormatParseLocation.column:I
3: return
end local 2 end local 1 end local 0 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 0: aload 0
getfield com.google.protobuf.TextFormatParseLocation.line:I
ireturn
end local 0 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 0: aload 0
getfield com.google.protobuf.TextFormatParseLocation.column:I
ireturn
end local 0 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 0: ldc "ParseLocation{line=%d, column=%d}"
iconst_2
anewarray java.lang.Object
dup
iconst_0
aload 0
getfield com.google.protobuf.TextFormatParseLocation.line:I
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
aastore
dup
iconst_1
aload 0
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 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 start local 1 0: aload 1
aload 0
if_acmpne 2
1: iconst_1
ireturn
2: StackMap locals:
StackMap stack:
aload 1
instanceof com.google.protobuf.TextFormatParseLocation
ifne 4
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 1
checkcast com.google.protobuf.TextFormatParseLocation
astore 2
start local 2 5: aload 0
getfield com.google.protobuf.TextFormatParseLocation.line:I
aload 2
invokevirtual com.google.protobuf.TextFormatParseLocation.getLine:()I
if_icmpne 6
aload 0
getfield com.google.protobuf.TextFormatParseLocation.column:I
aload 2
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 end local 1 end local 0 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 0: iconst_2
newarray 10
dup
iconst_0
aload 0
getfield com.google.protobuf.TextFormatParseLocation.line:I
iastore
dup
iconst_1
aload 0
getfield com.google.protobuf.TextFormatParseLocation.column:I
iastore
astore 1
start local 1 1: aload 1
invokestatic java.util.Arrays.hashCode:([I)I
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lcom/google/protobuf/TextFormatParseLocation;
1 2 1 values [I
}
SourceFile: "TextFormatParseLocation.java"