public final class org.antlr.v4.runtime.atn.LexerModeAction implements org.antlr.v4.runtime.atn.LexerAction
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.antlr.v4.runtime.atn.LexerModeAction
  super_class: java.lang.Object
{
  private final int mode;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
        start local 1 // int mode
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 27
            aload 0 /* this */
            iload 1 /* mode */
            putfield org.antlr.v4.runtime.atn.LexerModeAction.mode:I
         2: .line 28
            return
        end local 1 // int mode
        end local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/antlr/v4/runtime/atn/LexerModeAction;
            0    3     1  mode  I
    MethodParameters:
      Name  Flags
      mode  

  public int getMode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
         0: .line 36
            aload 0 /* this */
            getfield org.antlr.v4.runtime.atn.LexerModeAction.mode:I
            ireturn
        end local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/antlr/v4/runtime/atn/LexerModeAction;

  public org.antlr.v4.runtime.atn.LexerActionType getActionType();
    descriptor: ()Lorg/antlr/v4/runtime/atn/LexerActionType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
         0: .line 45
            getstatic org.antlr.v4.runtime.atn.LexerActionType.MODE:Lorg/antlr/v4/runtime/atn/LexerActionType;
            areturn
        end local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/antlr/v4/runtime/atn/LexerModeAction;

  public boolean isPositionDependent();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
         0: .line 54
            iconst_0
            ireturn
        end local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/antlr/v4/runtime/atn/LexerModeAction;

  public void execute(org.antlr.v4.runtime.Lexer);
    descriptor: (Lorg/antlr/v4/runtime/Lexer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
        start local 1 // org.antlr.v4.runtime.Lexer lexer
         0: .line 65
            aload 1 /* lexer */
            aload 0 /* this */
            getfield org.antlr.v4.runtime.atn.LexerModeAction.mode:I
            invokevirtual org.antlr.v4.runtime.Lexer.mode:(I)V
         1: .line 66
            return
        end local 1 // org.antlr.v4.runtime.Lexer lexer
        end local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/antlr/v4/runtime/atn/LexerModeAction;
            0    2     1  lexer  Lorg/antlr/v4/runtime/Lexer;
    MethodParameters:
       Name  Flags
      lexer  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
         0: .line 70
            invokestatic org.antlr.v4.runtime.misc.MurmurHash.initialize:()I
            istore 1 /* hash */
        start local 1 // int hash
         1: .line 71
            iload 1 /* hash */
            aload 0 /* this */
            invokevirtual org.antlr.v4.runtime.atn.LexerModeAction.getActionType:()Lorg/antlr/v4/runtime/atn/LexerActionType;
            invokevirtual org.antlr.v4.runtime.atn.LexerActionType.ordinal:()I
            invokestatic org.antlr.v4.runtime.misc.MurmurHash.update:(II)I
            istore 1 /* hash */
         2: .line 72
            iload 1 /* hash */
            aload 0 /* this */
            getfield org.antlr.v4.runtime.atn.LexerModeAction.mode:I
            invokestatic org.antlr.v4.runtime.misc.MurmurHash.update:(II)I
            istore 1 /* hash */
         3: .line 73
            iload 1 /* hash */
            iconst_2
            invokestatic org.antlr.v4.runtime.misc.MurmurHash.finish:(II)I
            ireturn
        end local 1 // int hash
        end local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/antlr/v4/runtime/atn/LexerModeAction;
            1    4     1  hash  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
        start local 1 // java.lang.Object obj
         0: .line 78
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 2
         1: .line 79
            iconst_1
            ireturn
         2: .line 81
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.antlr.v4.runtime.atn.LexerModeAction
            ifne 4
         3: .line 82
            iconst_0
            ireturn
         4: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.antlr.v4.runtime.atn.LexerModeAction.mode:I
            aload 1 /* obj */
            checkcast org.antlr.v4.runtime.atn.LexerModeAction
            getfield org.antlr.v4.runtime.atn.LexerModeAction.mode:I
            if_icmpne 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/antlr/v4/runtime/atn/LexerModeAction;
            0    6     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.antlr.v4.runtime.atn.LexerModeAction this
         0: .line 90
            ldc "mode(%d)"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.antlr.v4.runtime.atn.LexerModeAction.mode: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 // org.antlr.v4.runtime.atn.LexerModeAction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/antlr/v4/runtime/atn/LexerModeAction;
}
SourceFile: "LexerModeAction.java"