public class org.eclipse.jdt.internal.core.search.matching.PossibleMatch implements org.eclipse.jdt.internal.compiler.env.ICompilationUnit
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.core.search.matching.PossibleMatch
  super_class: java.lang.Object
{
  public static final java.lang.String NO_SOURCE_FILE_NAME;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "NO SOURCE FILE NAME"

  public static final char[] NO_SOURCE_FILE;
    descriptor: [C
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public org.eclipse.core.resources.IResource resource;
    descriptor: Lorg/eclipse/core/resources/IResource;
    flags: (0x0001) ACC_PUBLIC

  public org.eclipse.jdt.internal.core.Openable openable;
    descriptor: Lorg/eclipse/jdt/internal/core/Openable;
    flags: (0x0001) ACC_PUBLIC

  public org.eclipse.jdt.internal.core.search.matching.MatchingNodeSet nodeSet;
    descriptor: Lorg/eclipse/jdt/internal/core/search/matching/MatchingNodeSet;
    flags: (0x0001) ACC_PUBLIC

  public char[][] compoundName;
    descriptor: [[C
    flags: (0x0001) ACC_PUBLIC

  org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration parsedUnit;
    descriptor: Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
    flags: (0x0000) 

  public org.eclipse.jdt.core.search.SearchDocument document;
    descriptor: Lorg/eclipse/jdt/core/search/SearchDocument;
    flags: (0x0001) ACC_PUBLIC

  private java.lang.String sourceFileName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private char[] source;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jdt.internal.core.search.matching.PossibleMatch similarMatch;
    descriptor: Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
    flags: (0x0002) ACC_PRIVATE

  public java.lang.String autoModuleName;
    descriptor: Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 30
            iconst_0
            newarray 5
            putstatic org.eclipse.jdt.internal.core.search.matching.PossibleMatch.NO_SOURCE_FILE:[C
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.eclipse.jdt.internal.core.search.matching.MatchLocator, org.eclipse.core.resources.IResource, org.eclipse.jdt.internal.core.Openable, org.eclipse.jdt.core.search.SearchDocument, boolean);
    descriptor: (Lorg/eclipse/jdt/internal/core/search/matching/MatchLocator;Lorg/eclipse/core/resources/IResource;Lorg/eclipse/jdt/internal/core/Openable;Lorg/eclipse/jdt/core/search/SearchDocument;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=6
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
        start local 1 // org.eclipse.jdt.internal.core.search.matching.MatchLocator locator
        start local 2 // org.eclipse.core.resources.IResource resource
        start local 3 // org.eclipse.jdt.internal.core.Openable openable
        start local 4 // org.eclipse.jdt.core.search.SearchDocument document
        start local 5 // boolean mustResolve
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            aload 2 /* resource */
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.resource:Lorg/eclipse/core/resources/IResource;
         2: .line 45
            aload 0 /* this */
            aload 3 /* openable */
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
         3: .line 46
            aload 0 /* this */
            aload 4 /* document */
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.document:Lorg/eclipse/jdt/core/search/SearchDocument;
         4: .line 47
            aload 0 /* this */
            new org.eclipse.jdt.internal.core.search.matching.MatchingNodeSet
            dup
            iload 5 /* mustResolve */
            invokespecial org.eclipse.jdt.internal.core.search.matching.MatchingNodeSet.<init>:(Z)V
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.nodeSet:Lorg/eclipse/jdt/internal/core/search/matching/MatchingNodeSet;
         5: .line 48
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.search.matching.PossibleMatch.getQualifiedName:()[C
            astore 6 /* qualifiedName */
        start local 6 // char[] qualifiedName
         6: .line 49
            aload 6 /* qualifiedName */
            ifnull 8
         7: .line 50
            aload 0 /* this */
            bipush 46
            aload 6 /* qualifiedName */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.splitOn:(C[C)[[C
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
         8: .line 51
      StackMap locals: org.eclipse.jdt.internal.core.search.matching.PossibleMatch org.eclipse.jdt.internal.core.search.matching.MatchLocator org.eclipse.core.resources.IResource org.eclipse.jdt.internal.core.Openable org.eclipse.jdt.core.search.SearchDocument int char[]
      StackMap stack:
            return
        end local 6 // char[] qualifiedName
        end local 5 // boolean mustResolve
        end local 4 // org.eclipse.jdt.core.search.SearchDocument document
        end local 3 // org.eclipse.jdt.internal.core.Openable openable
        end local 2 // org.eclipse.core.resources.IResource resource
        end local 1 // org.eclipse.jdt.internal.core.search.matching.MatchLocator locator
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0           this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            0    9     1        locator  Lorg/eclipse/jdt/internal/core/search/matching/MatchLocator;
            0    9     2       resource  Lorg/eclipse/core/resources/IResource;
            0    9     3       openable  Lorg/eclipse/jdt/internal/core/Openable;
            0    9     4       document  Lorg/eclipse/jdt/core/search/SearchDocument;
            0    9     5    mustResolve  Z
            6    9     6  qualifiedName  [C
    MethodParameters:
             Name  Flags
      locator      
      resource     
      openable     
      document     
      mustResolve  

  public void cleanUp();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 53
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.source:[C
         1: .line 54
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.parsedUnit:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            ifnull 4
         2: .line 55
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.parsedUnit:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            invokevirtual org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.cleanUp:()V
         3: .line 56
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.parsedUnit:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
         4: .line 58
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.nodeSet:Lorg/eclipse/jdt/internal/core/search/matching/MatchingNodeSet;
         5: .line 59
            return
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;

  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.eclipse.jdt.internal.core.search.matching.PossibleMatch this
        start local 1 // java.lang.Object obj
         0: .line 62
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            ifnonnull 1
            aload 0 /* this */
            aload 1 /* obj */
            invokespecial java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
         1: .line 63
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.jdt.internal.core.search.matching.PossibleMatch
            ifne 2
            iconst_0
            ireturn
         2: .line 67
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            aload 1 /* obj */
            checkcast org.eclipse.jdt.internal.core.search.matching.PossibleMatch
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.equals:([[C[[C)Z
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            0    3     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public char[] getContents();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 71
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.source:[C
            getstatic org.eclipse.jdt.internal.core.search.matching.PossibleMatch.NO_SOURCE_FILE:[C
            if_acmpne 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.source:[C
      StackMap locals:
      StackMap stack: char[]
         2: astore 1 /* contents */
        start local 1 // char[] contents
         3: .line 72
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.source:[C
            ifnonnull 30
         4: .line 73
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.AbstractClassFile
            ifeq 21
         5: .line 74
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.search.matching.PossibleMatch.getSourceFileName:()Ljava/lang/String;
            astore 2 /* fileName */
        start local 2 // java.lang.String fileName
         6: .line 75
            aload 2 /* fileName */
            ldc "NO SOURCE FILE NAME"
            if_acmpne 7
            getstatic org.eclipse.jdt.core.compiler.CharOperation.NO_CHAR:[C
            areturn
         7: .line 77
      StackMap locals: char[] java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            invokevirtual org.eclipse.jdt.internal.core.Openable.getSourceMapper:()Lorg/eclipse/jdt/internal/core/SourceMapper;
            astore 3 /* sourceMapper */
        start local 3 // org.eclipse.jdt.internal.core.SourceMapper sourceMapper
         8: .line 78
            aload 3 /* sourceMapper */
            ifnull 27
         9: .line 79
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.ClassFile
            ifeq 13
        10: .line 80
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            checkcast org.eclipse.jdt.internal.core.ClassFile
            invokevirtual org.eclipse.jdt.internal.core.ClassFile.getType:()Lorg/eclipse/jdt/core/IType;
            astore 4 /* type */
        start local 4 // org.eclipse.jdt.core.IType type
        11: .line 81
            aload 3 /* sourceMapper */
            aload 4 /* type */
            aload 2 /* fileName */
            invokevirtual org.eclipse.jdt.internal.core.SourceMapper.findSource:(Lorg/eclipse/jdt/core/IType;Ljava/lang/String;)[C
            astore 1 /* contents */
        end local 4 // org.eclipse.jdt.core.IType type
        12: .line 82
            goto 27
      StackMap locals: org.eclipse.jdt.internal.core.SourceMapper
      StackMap stack:
        13: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.ModularClassFile
            ifeq 27
        14: .line 84
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            checkcast org.eclipse.jdt.internal.core.ModularClassFile
            invokevirtual org.eclipse.jdt.internal.core.ModularClassFile.getModule:()Lorg/eclipse/jdt/core/IModuleDescription;
            astore 4 /* module */
        start local 4 // org.eclipse.jdt.core.IModuleDescription module
        15: .line 85
            aload 4 /* module */
            ifnull 16
            aload 3 /* sourceMapper */
            aload 4 /* module */
            invokevirtual org.eclipse.jdt.internal.core.SourceMapper.findSource:(Lorg/eclipse/jdt/core/IModuleDescription;)[C
            goto 17
      StackMap locals: org.eclipse.jdt.core.IModuleDescription
      StackMap stack:
        16: getstatic org.eclipse.jdt.core.compiler.CharOperation.NO_CHAR:[C
      StackMap locals:
      StackMap stack: char[]
        17: astore 1 /* contents */
        end local 4 // org.eclipse.jdt.core.IModuleDescription module
        18: .line 86
            goto 27
      StackMap locals: org.eclipse.jdt.internal.core.search.matching.PossibleMatch char[] java.lang.String org.eclipse.jdt.internal.core.SourceMapper
      StackMap stack: org.eclipse.jdt.core.JavaModelException
        19: pop
        20: .line 87
            getstatic org.eclipse.jdt.core.compiler.CharOperation.NO_CHAR:[C
            areturn
        end local 3 // org.eclipse.jdt.internal.core.SourceMapper sourceMapper
        end local 2 // java.lang.String fileName
        21: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.autoModuleName:Ljava/lang/String;
            ifnull 26
        22: .line 92
            new java.lang.StringBuilder
            dup
            ldc "module "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.autoModuleName: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;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            astore 1 /* contents */
        23: .line 93
            aload 0 /* this */
            ldc "module-info.java"
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.sourceFileName:Ljava/lang/String;
        24: .line 94
            aload 0 /* this */
            iconst_1
            anewarray char[]
            dup
            iconst_0
            ldc "module-info"
            invokevirtual java.lang.String.toCharArray:()[C
            aastore
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
        25: .line 95
            goto 27
        26: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.document:Lorg/eclipse/jdt/core/search/SearchDocument;
            invokevirtual org.eclipse.jdt.core.search.SearchDocument.getCharContents:()[C
            astore 1 /* contents */
        27: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* contents */
            ifnonnull 28
            getstatic org.eclipse.jdt.internal.core.search.matching.PossibleMatch.NO_SOURCE_FILE:[C
            goto 29
      StackMap locals:
      StackMap stack: org.eclipse.jdt.internal.core.search.matching.PossibleMatch
        28: aload 1 /* contents */
      StackMap locals: org.eclipse.jdt.internal.core.search.matching.PossibleMatch char[]
      StackMap stack: org.eclipse.jdt.internal.core.search.matching.PossibleMatch char[]
        29: putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.source:[C
        30: .line 100
      StackMap locals:
      StackMap stack:
            aload 1 /* contents */
            areturn
        end local 1 // char[] contents
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   31     0          this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            3   31     1      contents  [C
            6   21     2      fileName  Ljava/lang/String;
            8   21     3  sourceMapper  Lorg/eclipse/jdt/internal/core/SourceMapper;
           11   12     4          type  Lorg/eclipse/jdt/core/IType;
           15   18     4        module  Lorg/eclipse/jdt/core/IModuleDescription;
      Exception table:
        from    to  target  type
          14    18      19  Class org.eclipse.jdt.core.JavaModelException

  public char[] getFileName();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 110
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            invokevirtual org.eclipse.jdt.internal.core.Openable.getElementName:()Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;

  public char[] getMainTypeName();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 115
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            arraylength
            iconst_1
            isub
            aaload
            areturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;

  public char[][] getPackageName();
    descriptor: ()[[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 119
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            arraylength
            istore 1 /* length */
        start local 1 // int length
         1: .line 120
            iload 1 /* length */
            iconst_1
            if_icmpgt 2
            getstatic org.eclipse.jdt.core.compiler.CharOperation.NO_CHAR_CHAR:[[C
            areturn
         2: .line 121
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            iconst_0
            iload 1 /* length */
            iconst_1
            isub
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.subarray:([[CII)[[C
            areturn
        end local 1 // int length
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            1    3     1  length  I

  private char[] getQualifiedName();
    descriptor: ()[C
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 128
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.CompilationUnit
            ifeq 5
         1: .line 130
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            invokevirtual org.eclipse.jdt.internal.core.Openable.getElementName:()Ljava/lang/String;
            astore 1 /* fileName */
        start local 1 // java.lang.String fileName
         2: .line 132
            aload 1 /* fileName */
            invokestatic org.eclipse.jdt.internal.core.util.Util.getNameWithoutJavaLikeExtension:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            astore 2 /* mainTypeName */
        start local 2 // char[] mainTypeName
         3: .line 133
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            checkcast org.eclipse.jdt.internal.core.CompilationUnit
            astore 3 /* cu */
        start local 3 // org.eclipse.jdt.internal.core.CompilationUnit cu
         4: .line 134
            aload 3 /* cu */
            new java.lang.String
            dup
            aload 2 /* mainTypeName */
            invokespecial java.lang.String.<init>:([C)V
            invokevirtual org.eclipse.jdt.internal.core.CompilationUnit.getType:(Ljava/lang/String;)Lorg/eclipse/jdt/core/IType;
            invokeinterface org.eclipse.jdt.core.IType.getFullyQualifiedName:()Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
        end local 3 // org.eclipse.jdt.internal.core.CompilationUnit cu
        end local 2 // char[] mainTypeName
        end local 1 // java.lang.String fileName
         5: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.ClassFile
            ifeq 15
         6: .line 136
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.search.matching.PossibleMatch.getSourceFileName:()Ljava/lang/String;
            astore 1 /* fileName */
        start local 1 // java.lang.String fileName
         7: .line 137
            aload 1 /* fileName */
            ldc "NO SOURCE FILE NAME"
            if_acmpne 9
         8: .line 138
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            checkcast org.eclipse.jdt.internal.core.ClassFile
            invokevirtual org.eclipse.jdt.internal.core.ClassFile.getType:()Lorg/eclipse/jdt/core/IType;
            bipush 46
            invokeinterface org.eclipse.jdt.core.IType.getFullyQualifiedName:(C)Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
         9: .line 141
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* fileName */
            invokestatic org.eclipse.jdt.internal.core.util.Util.indexOfJavaLikeExtension:(Ljava/lang/String;)I
            istore 2 /* index */
        start local 2 // int index
        10: .line 142
            iload 2 /* index */
            iconst_m1
            if_icmpne 11
            aload 1 /* fileName */
            goto 12
      StackMap locals: int
      StackMap stack:
        11: aload 1 /* fileName */
            iconst_0
            iload 2 /* index */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
        12: astore 3 /* simpleName */
        start local 3 // java.lang.String simpleName
        13: .line 143
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            invokevirtual org.eclipse.jdt.internal.core.Openable.getParent:()Lorg/eclipse/jdt/core/IJavaElement;
            checkcast org.eclipse.jdt.internal.core.PackageFragment
            astore 4 /* pkg */
        start local 4 // org.eclipse.jdt.internal.core.PackageFragment pkg
        14: .line 144
            aload 4 /* pkg */
            getfield org.eclipse.jdt.internal.core.PackageFragment.names:[Ljava/lang/String;
            aload 3 /* simpleName */
            bipush 46
            invokestatic org.eclipse.jdt.internal.core.util.Util.concatWith:([Ljava/lang/String;Ljava/lang/String;C)Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
        end local 4 // org.eclipse.jdt.internal.core.PackageFragment pkg
        end local 3 // java.lang.String simpleName
        end local 2 // int index
        end local 1 // java.lang.String fileName
        15: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.ModularClassFile
            ifeq 19
        16: .line 147
            ldc "module-info"
            astore 1 /* simpleName */
        start local 1 // java.lang.String simpleName
        17: .line 148
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            invokevirtual org.eclipse.jdt.internal.core.Openable.getParent:()Lorg/eclipse/jdt/core/IJavaElement;
            checkcast org.eclipse.jdt.internal.core.PackageFragment
            astore 2 /* pkg */
        start local 2 // org.eclipse.jdt.internal.core.PackageFragment pkg
        18: .line 149
            aload 2 /* pkg */
            getfield org.eclipse.jdt.internal.core.PackageFragment.names:[Ljava/lang/String;
            aload 1 /* simpleName */
            bipush 46
            invokestatic org.eclipse.jdt.internal.core.util.Util.concatWith:([Ljava/lang/String;Ljava/lang/String;C)Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
        end local 2 // org.eclipse.jdt.internal.core.PackageFragment pkg
        end local 1 // java.lang.String simpleName
        19: .line 151
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   20     0          this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            2    5     1      fileName  Ljava/lang/String;
            3    5     2  mainTypeName  [C
            4    5     3            cu  Lorg/eclipse/jdt/internal/core/CompilationUnit;
            7   15     1      fileName  Ljava/lang/String;
           10   15     2         index  I
           13   15     3    simpleName  Ljava/lang/String;
           14   15     4           pkg  Lorg/eclipse/jdt/internal/core/PackageFragment;
           17   19     1    simpleName  Ljava/lang/String;
           18   19     2           pkg  Lorg/eclipse/jdt/internal/core/PackageFragment;

  org.eclipse.jdt.internal.core.search.matching.PossibleMatch getSimilarMatch();
    descriptor: ()Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 154
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.similarMatch:Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            areturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;

  private java.lang.String getSourceFileName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 161
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.sourceFileName:Ljava/lang/String;
            ifnull 1
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.sourceFileName:Ljava/lang/String;
            areturn
         1: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "NO SOURCE FILE NAME"
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.sourceFileName:Ljava/lang/String;
         2: .line 164
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            invokevirtual org.eclipse.jdt.internal.core.Openable.getSourceMapper:()Lorg/eclipse/jdt/internal/core/SourceMapper;
            ifnull 14
         3: .line 165
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.ClassFile
            ifeq 12
         4: .line 166
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            checkcast org.eclipse.jdt.internal.core.ClassFile
            invokevirtual org.eclipse.jdt.internal.core.ClassFile.getType:()Lorg/eclipse/jdt/core/IType;
            checkcast org.eclipse.jdt.internal.core.BinaryType
            astore 1 /* type */
        start local 1 // org.eclipse.jdt.internal.core.BinaryType type
         5: .line 167
            aload 1 /* type */
            invokestatic org.eclipse.jdt.internal.core.search.matching.MatchLocator.classFileReader:(Lorg/eclipse/jdt/core/IType;)Lorg/eclipse/jdt/internal/compiler/env/IBinaryType;
            astore 2 /* reader */
        start local 2 // org.eclipse.jdt.internal.compiler.env.IBinaryType reader
         6: .line 168
            aload 2 /* reader */
            ifnull 14
         7: .line 169
            aload 1 /* type */
            aload 2 /* reader */
            invokevirtual org.eclipse.jdt.internal.core.BinaryType.sourceFileName:(Lorg/eclipse/jdt/internal/compiler/env/IBinaryType;)Ljava/lang/String;
            astore 3 /* fileName */
        start local 3 // java.lang.String fileName
         8: .line 170
            aload 0 /* this */
            aload 3 /* fileName */
            ifnonnull 9
            ldc "NO SOURCE FILE NAME"
            goto 10
      StackMap locals: org.eclipse.jdt.internal.core.search.matching.PossibleMatch org.eclipse.jdt.internal.core.BinaryType org.eclipse.jdt.internal.compiler.env.IBinaryType java.lang.String
      StackMap stack: org.eclipse.jdt.internal.core.search.matching.PossibleMatch
         9: aload 3 /* fileName */
      StackMap locals: org.eclipse.jdt.internal.core.search.matching.PossibleMatch org.eclipse.jdt.internal.core.BinaryType org.eclipse.jdt.internal.compiler.env.IBinaryType java.lang.String
      StackMap stack: org.eclipse.jdt.internal.core.search.matching.PossibleMatch java.lang.String
        10: putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.sourceFileName:Ljava/lang/String;
        end local 3 // java.lang.String fileName
        end local 2 // org.eclipse.jdt.internal.compiler.env.IBinaryType reader
        end local 1 // org.eclipse.jdt.internal.core.BinaryType type
        11: .line 172
            goto 14
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.ModularClassFile
            ifeq 14
        13: .line 174
            aload 0 /* this */
            ldc "module-info.java"
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.sourceFileName:Ljava/lang/String;
        14: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.sourceFileName:Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            5   11     1      type  Lorg/eclipse/jdt/internal/core/BinaryType;
            6   11     2    reader  Lorg/eclipse/jdt/internal/compiler/env/IBinaryType;
            8   11     3  fileName  Ljava/lang/String;

  boolean hasSimilarMatch();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 180
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.similarMatch:Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.source:[C
            getstatic org.eclipse.jdt.internal.core.search.matching.PossibleMatch.NO_SOURCE_FILE:[C
            if_acmpeq 1
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.search.matching.PossibleMatch.isModuleInfo:(Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;)Z
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 184
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            ifnonnull 1
            aload 0 /* this */
            invokespecial java.lang.Object.hashCode:()I
            ireturn
         1: .line 186
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* hashCode */
        start local 1 // int hashCode
         2: .line 187
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            arraylength
            istore 3 /* length */
        start local 3 // int length
         4: goto 7
         5: .line 188
      StackMap locals: int int int
      StackMap stack:
            iload 1 /* hashCode */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.compoundName:[[C
            iload 2 /* i */
            aaload
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.hashCode:([C)I
            iadd
            istore 1 /* hashCode */
         6: .line 187
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            iload 3 /* length */
            if_icmplt 5
        end local 3 // int length
        end local 2 // int i
         8: .line 189
            iload 1 /* hashCode */
            ireturn
        end local 1 // int hashCode
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            2    9     1  hashCode  I
            3    8     2         i  I
            4    8     3    length  I

  public boolean ignoreOptionalProblems();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 193
            iconst_0
            ireturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;

  private boolean isModuleInfo(org.eclipse.jdt.internal.core.search.matching.PossibleMatch);
    descriptor: (Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
        start local 1 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch possibleMatch
         0: .line 196
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.search.matching.PossibleMatch.getMainTypeName:()[C
            getstatic org.eclipse.jdt.internal.compiler.lookup.TypeConstants.MODULE_INFO_NAME:[C
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.equals:([C[C)Z
            ireturn
        end local 1 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch possibleMatch
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            0    1     1  possibleMatch  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
    MethodParameters:
               Name  Flags
      possibleMatch  

  void setSimilarMatch(org.eclipse.jdt.internal.core.search.matching.PossibleMatch);
    descriptor: (Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
        start local 1 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch possibleMatch
         0: .line 201
            aload 1 /* possibleMatch */
            aload 0 /* this */
            aload 1 /* possibleMatch */
            invokevirtual org.eclipse.jdt.internal.core.search.matching.PossibleMatch.isModuleInfo:(Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;)Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack: org.eclipse.jdt.internal.core.search.matching.PossibleMatch
         1: getstatic org.eclipse.jdt.internal.core.search.matching.PossibleMatch.NO_SOURCE_FILE:[C
      StackMap locals: org.eclipse.jdt.internal.core.search.matching.PossibleMatch org.eclipse.jdt.internal.core.search.matching.PossibleMatch
      StackMap stack: org.eclipse.jdt.internal.core.search.matching.PossibleMatch char[]
         2: putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.source:[C
         3: .line 202
            aload 0 /* this */
            aload 1 /* possibleMatch */
            putfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.similarMatch:Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
         4: .line 203
            return
        end local 1 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch possibleMatch
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            0    5     1  possibleMatch  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
    MethodParameters:
               Name  Flags
      possibleMatch  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 206
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            ifnonnull 1
            ldc "Fake PossibleMatch"
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            invokevirtual org.eclipse.jdt.internal.core.Openable.toString:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;

  public char[] getModuleName();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
         0: .line 210
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.CompilationUnit
            ifeq 2
         1: .line 211
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            checkcast org.eclipse.jdt.internal.core.CompilationUnit
            invokevirtual org.eclipse.jdt.internal.core.CompilationUnit.getModuleName:()[C
            areturn
         2: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            instanceof org.eclipse.jdt.internal.core.ClassFile
            ifeq 6
         3: .line 213
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.matching.PossibleMatch.openable:Lorg/eclipse/jdt/internal/core/Openable;
            invokevirtual org.eclipse.jdt.internal.core.Openable.getPackageFragmentRoot:()Lorg/eclipse/jdt/internal/core/PackageFragmentRoot;
            invokevirtual org.eclipse.jdt.internal.core.PackageFragmentRoot.getModuleDescription:()Lorg/eclipse/jdt/core/IModuleDescription;
            astore 1 /* moduleDescription */
        start local 1 // org.eclipse.jdt.core.IModuleDescription moduleDescription
         4: .line 214
            aload 1 /* moduleDescription */
            ifnull 6
         5: .line 215
            aload 1 /* moduleDescription */
            invokeinterface org.eclipse.jdt.core.IModuleDescription.getElementName:()Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
        end local 1 // org.eclipse.jdt.core.IModuleDescription moduleDescription
         6: .line 218
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.eclipse.jdt.internal.core.search.matching.PossibleMatch this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    7     0               this  Lorg/eclipse/jdt/internal/core/search/matching/PossibleMatch;
            4    6     1  moduleDescription  Lorg/eclipse/jdt/core/IModuleDescription;
}
SourceFile: "PossibleMatch.java"