public abstract class com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher extends com.oracle.truffle.regex.tregex.matchers.InvertibleCharMatcher
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher
  super_class: com.oracle.truffle.regex.tregex.matchers.InvertibleCharMatcher
{
  private final int c1;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 50
            ldc Lcom/oracle/truffle/regex/tregex/matchers/TwoCharMatcher;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(boolean, int, int);
    descriptor: (ZII)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher this
        start local 1 // boolean invert
        start local 2 // int c1
        start local 3 // int c2
         0: .line 63
            aload 0 /* this */
            iload 1 /* invert */
            invokespecial com.oracle.truffle.regex.tregex.matchers.InvertibleCharMatcher.<init>:(Z)V
         1: .line 64
            getstatic com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.$assertionsDisabled:Z
            ifne 2
            iload 2 /* c1 */
            iload 3 /* c2 */
            if_icmpne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 65
      StackMap locals: com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher int int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* c1 */
            putfield com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.c1:I
         3: .line 66
            aload 0 /* this */
            iload 3 /* c2 */
            putfield com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.c2:I
         4: .line 67
            return
        end local 3 // int c2
        end local 2 // int c1
        end local 1 // boolean invert
        end local 0 // com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/oracle/truffle/regex/tregex/matchers/TwoCharMatcher;
            0    5     1  invert  Z
            0    5     2      c1  I
            0    5     3      c2  I
    MethodParameters:
        Name  Flags
      invert  
      c1      
      c2      

  public static com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher create(boolean, int, int);
    descriptor: (ZII)Lcom/oracle/truffle/regex/tregex/matchers/TwoCharMatcher;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 70
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tTwoCharMatcherNodeGen cannot be resolved\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    MethodParameters:
        Name  Flags
      invert  
      c1      
      c2      

  public boolean match(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher this
        start local 1 // int m
         0: .line 75
            aload 0 /* this */
            iload 1 /* m */
            aload 0 /* this */
            getfield com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.c1:I
            if_icmpeq 1
            iload 1 /* m */
            aload 0 /* this */
            getfield com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.c2:I
            if_icmpeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack: com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher
         1: iconst_1
      StackMap locals: com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher int
      StackMap stack: com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher int
         2: invokevirtual com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.result:(Z)Z
            ireturn
        end local 1 // int m
        end local 0 // com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/regex/tregex/matchers/TwoCharMatcher;
            0    3     1     m  I
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.dsl.Specialization()
    MethodParameters:
      Name  Flags
      m     

  public int estimatedCost();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher this
         0: .line 80
            iconst_2
            ireturn
        end local 0 // com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/regex/tregex/matchers/TwoCharMatcher;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher this
         0: .line 86
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.modifiersToString:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.c1:I
            invokestatic com.oracle.truffle.regex.tregex.util.DebugUtil.charToString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "||"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher.c2:I
            invokestatic com.oracle.truffle.regex.tregex.util.DebugUtil.charToString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.regex.tregex.matchers.TwoCharMatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/regex/tregex/matchers/TwoCharMatcher;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
}
SourceFile: "TwoCharMatcher.java"
InnerClasses:
  public abstract TruffleBoundary = com.oracle.truffle.api.CompilerDirectives$TruffleBoundary of com.oracle.truffle.api.CompilerDirectives