public class org.eclipse.jdt.internal.core.search.indexing.SourceIndexer extends org.eclipse.jdt.internal.core.search.indexing.AbstractIndexer implements org.eclipse.jdt.internal.compiler.impl.ITypeRequestor, org.eclipse.jdt.internal.compiler.util.SuffixConstants
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.core.search.indexing.SourceIndexer
  super_class: org.eclipse.jdt.internal.core.search.indexing.AbstractIndexer
{
  private org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment lookupEnvironment;
    descriptor: Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jdt.internal.compiler.impl.CompilerOptions options;
    descriptor: Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;
    flags: (0x0002) ACC_PRIVATE

  public org.eclipse.jdt.internal.compiler.ISourceElementRequestor requestor;
    descriptor: Lorg/eclipse/jdt/internal/compiler/ISourceElementRequestor;
    flags: (0x0001) ACC_PUBLIC

  private org.eclipse.jdt.internal.compiler.parser.Parser basicParser;
    descriptor: Lorg/eclipse/jdt/internal/compiler/parser/Parser;
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jdt.internal.core.jdom.CompilationUnit compilationUnit;
    descriptor: Lorg/eclipse/jdt/internal/core/jdom/CompilationUnit;
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration cud;
    descriptor: Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
    flags: (0x0002) ACC_PRIVATE

  private static final boolean DEBUG;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public void <init>(org.eclipse.jdt.core.search.SearchDocument);
    descriptor: (Lorg/eclipse/jdt/core/search/SearchDocument;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
        start local 1 // org.eclipse.jdt.core.search.SearchDocument document
         0: .line 87
            aload 0 /* this */
            aload 1 /* document */
            invokespecial org.eclipse.jdt.internal.core.search.indexing.AbstractIndexer.<init>:(Lorg/eclipse/jdt/core/search/SearchDocument;)V
         1: .line 88
            aload 0 /* this */
            new org.eclipse.jdt.internal.core.search.indexing.SourceIndexerRequestor
            dup
            aload 0 /* this */
            invokespecial org.eclipse.jdt.internal.core.search.indexing.SourceIndexerRequestor.<init>:(Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;)V
            putfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.requestor:Lorg/eclipse/jdt/internal/compiler/ISourceElementRequestor;
         2: .line 89
            return
        end local 1 // org.eclipse.jdt.core.search.SearchDocument document
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            0    3     1  document  Lorg/eclipse/jdt/core/search/SearchDocument;
    MethodParameters:
          Name  Flags
      document  

  public void indexDocument();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
         0: .line 93
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.document:Lorg/eclipse/jdt/core/search/SearchDocument;
            invokevirtual org.eclipse.jdt.core.search.SearchDocument.getPath:()Ljava/lang/String;
            astore 1 /* documentPath */
        start local 1 // java.lang.String documentPath
         1: .line 94
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.document:Lorg/eclipse/jdt/core/search/SearchDocument;
            invokevirtual org.eclipse.jdt.core.search.SearchDocument.getParser:()Lorg/eclipse/jdt/internal/compiler/SourceElementParser;
            astore 2 /* parser */
        start local 2 // org.eclipse.jdt.internal.compiler.SourceElementParser parser
         2: .line 95
            aload 2 /* parser */
            ifnonnull 7
         3: .line 96
            new org.eclipse.core.runtime.Path
            dup
            aload 1 /* documentPath */
            invokespecial org.eclipse.core.runtime.Path.<init>:(Ljava/lang/String;)V
            astore 3 /* path */
        start local 3 // org.eclipse.core.runtime.IPath path
         4: .line 97
            invokestatic org.eclipse.core.resources.ResourcesPlugin.getWorkspace:()Lorg/eclipse/core/resources/IWorkspace;
            invokeinterface org.eclipse.core.resources.IWorkspace.getRoot:()Lorg/eclipse/core/resources/IWorkspaceRoot;
            aload 3 /* path */
            iconst_0
            invokeinterface org.eclipse.core.runtime.IPath.segment:(I)Ljava/lang/String;
            invokeinterface org.eclipse.core.resources.IWorkspaceRoot.getProject:(Ljava/lang/String;)Lorg/eclipse/core/resources/IProject;
            astore 4 /* project */
        start local 4 // org.eclipse.core.resources.IProject project
         5: .line 98
            invokestatic org.eclipse.jdt.internal.core.JavaModelManager.getJavaModelManager:()Lorg/eclipse/jdt/internal/core/JavaModelManager;
            getfield org.eclipse.jdt.internal.core.JavaModelManager.indexManager:Lorg/eclipse/jdt/internal/core/search/indexing/IndexManager;
            aload 4 /* project */
            invokestatic org.eclipse.jdt.core.JavaCore.create:(Lorg/eclipse/core/resources/IProject;)Lorg/eclipse/jdt/core/IJavaProject;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.requestor:Lorg/eclipse/jdt/internal/compiler/ISourceElementRequestor;
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.IndexManager.getSourceElementParser:(Lorg/eclipse/jdt/core/IJavaProject;Lorg/eclipse/jdt/internal/compiler/ISourceElementRequestor;)Lorg/eclipse/jdt/internal/compiler/SourceElementParser;
            astore 2 /* parser */
        end local 4 // org.eclipse.core.resources.IProject project
        end local 3 // org.eclipse.core.runtime.IPath path
         6: .line 99
            goto 8
         7: .line 100
      StackMap locals: java.lang.String org.eclipse.jdt.internal.compiler.SourceElementParser
      StackMap stack:
            aload 2 /* parser */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.requestor:Lorg/eclipse/jdt/internal/compiler/ISourceElementRequestor;
            invokevirtual org.eclipse.jdt.internal.compiler.SourceElementParser.setRequestor:(Lorg/eclipse/jdt/internal/compiler/ISourceElementRequestor;)V
         8: .line 104
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 3 /* source */
        start local 3 // char[] source
         9: .line 105
            aconst_null
            astore 4 /* name */
        start local 4 // char[] name
        10: .line 107
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.document:Lorg/eclipse/jdt/core/search/SearchDocument;
            invokevirtual org.eclipse.jdt.core.search.SearchDocument.getCharContents:()[C
            astore 3 /* source */
        11: .line 108
            aload 1 /* documentPath */
            invokevirtual java.lang.String.toCharArray:()[C
            astore 4 /* name */
        12: .line 109
            goto 14
      StackMap locals: org.eclipse.jdt.internal.core.search.indexing.SourceIndexer java.lang.String org.eclipse.jdt.internal.compiler.SourceElementParser char[] char[]
      StackMap stack: java.lang.Exception
        13: pop
        14: .line 112
      StackMap locals:
      StackMap stack:
            aload 3 /* source */
            ifnull 15
            aload 4 /* name */
            ifnonnull 16
      StackMap locals:
      StackMap stack:
        15: return
        16: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.eclipse.jdt.internal.core.jdom.CompilationUnit
            dup
            aload 3 /* source */
            aload 4 /* name */
            invokespecial org.eclipse.jdt.internal.core.jdom.CompilationUnit.<init>:([C[C)V
            putfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.compilationUnit:Lorg/eclipse/jdt/internal/core/jdom/CompilationUnit;
        17: .line 115
            aload 2 /* parser */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.compilationUnit:Lorg/eclipse/jdt/internal/core/jdom/CompilationUnit;
            iconst_1
            aconst_null
            invokevirtual org.eclipse.jdt.internal.compiler.SourceElementParser.parseCompilationUnit:(Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;ZLorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            invokevirtual org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.hasFunctionalTypes:()Z
            ifeq 23
        18: .line 116
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.document:Lorg/eclipse/jdt/core/search/SearchDocument;
            invokevirtual org.eclipse.jdt.core.search.SearchDocument.requireIndexingResolvedDocument:()V
        19: .line 117
            goto 23
      StackMap locals:
      StackMap stack: java.lang.Exception
        20: astore 5 /* e */
        start local 5 // java.lang.Exception e
        21: .line 118
            getstatic org.eclipse.jdt.internal.core.search.processing.JobManager.VERBOSE:Z
            ifeq 23
        22: .line 119
            aload 5 /* e */
            invokevirtual java.lang.Exception.printStackTrace:()V
        end local 5 // java.lang.Exception e
        23: .line 122
      StackMap locals:
      StackMap stack:
            return
        end local 4 // char[] name
        end local 3 // char[] source
        end local 2 // org.eclipse.jdt.internal.compiler.SourceElementParser parser
        end local 1 // java.lang.String documentPath
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   24     0          this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            1   24     1  documentPath  Ljava/lang/String;
            2   24     2        parser  Lorg/eclipse/jdt/internal/compiler/SourceElementParser;
            4    6     3          path  Lorg/eclipse/core/runtime/IPath;
            5    6     4       project  Lorg/eclipse/core/resources/IProject;
            9   24     3        source  [C
           10   24     4          name  [C
           21   23     5             e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          10    12      13  Class java.lang.Exception
          17    19      20  Class java.lang.Exception

  public void accept(org.eclipse.jdt.internal.compiler.env.IBinaryType, org.eclipse.jdt.internal.compiler.lookup.PackageBinding, org.eclipse.jdt.internal.compiler.env.AccessRestriction);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/env/IBinaryType;Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding;Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
        start local 1 // org.eclipse.jdt.internal.compiler.env.IBinaryType binaryType
        start local 2 // org.eclipse.jdt.internal.compiler.lookup.PackageBinding packageBinding
        start local 3 // org.eclipse.jdt.internal.compiler.env.AccessRestriction accessRestriction
         0: .line 126
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.lookupEnvironment:Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;
            aload 1 /* binaryType */
            aload 2 /* packageBinding */
            aload 3 /* accessRestriction */
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment.createBinaryTypeFrom:(Lorg/eclipse/jdt/internal/compiler/env/IBinaryType;Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding;Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;)Lorg/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding;
            pop
         1: .line 127
            return
        end local 3 // org.eclipse.jdt.internal.compiler.env.AccessRestriction accessRestriction
        end local 2 // org.eclipse.jdt.internal.compiler.lookup.PackageBinding packageBinding
        end local 1 // org.eclipse.jdt.internal.compiler.env.IBinaryType binaryType
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            0    2     1         binaryType  Lorg/eclipse/jdt/internal/compiler/env/IBinaryType;
            0    2     2     packageBinding  Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding;
            0    2     3  accessRestriction  Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;
    MethodParameters:
                   Name  Flags
      binaryType         
      packageBinding     
      accessRestriction  

  public void accept(org.eclipse.jdt.internal.compiler.env.ICompilationUnit, org.eclipse.jdt.internal.compiler.env.AccessRestriction);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
        start local 1 // org.eclipse.jdt.internal.compiler.env.ICompilationUnit unit
        start local 2 // org.eclipse.jdt.internal.compiler.env.AccessRestriction accessRestriction
         0: .line 131
            new org.eclipse.jdt.internal.compiler.CompilationResult
            dup
            aload 1 /* unit */
            iconst_1
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.options:Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;
            getfield org.eclipse.jdt.internal.compiler.impl.CompilerOptions.maxProblemsPerUnit:I
            invokespecial org.eclipse.jdt.internal.compiler.CompilationResult.<init>:(Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;III)V
            astore 3 /* unitResult */
        start local 3 // org.eclipse.jdt.internal.compiler.CompilationResult unitResult
         1: .line 132
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.basicParser:Lorg/eclipse/jdt/internal/compiler/parser/Parser;
            aload 1 /* unit */
            aload 3 /* unitResult */
            invokevirtual org.eclipse.jdt.internal.compiler.parser.Parser.dietParse:(Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;Lorg/eclipse/jdt/internal/compiler/CompilationResult;)Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            astore 4 /* parsedUnit */
        start local 4 // org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration parsedUnit
         2: .line 133
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.lookupEnvironment:Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;
            aload 4 /* parsedUnit */
            aload 2 /* accessRestriction */
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment.buildTypeBindings:(Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;)V
         3: .line 134
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.lookupEnvironment:Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;
            aload 4 /* parsedUnit */
            iconst_1
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment.completeTypeBindings:(Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;Z)V
         4: .line 135
            return
        end local 4 // org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration parsedUnit
        end local 3 // org.eclipse.jdt.internal.compiler.CompilationResult unitResult
        end local 2 // org.eclipse.jdt.internal.compiler.env.AccessRestriction accessRestriction
        end local 1 // org.eclipse.jdt.internal.compiler.env.ICompilationUnit unit
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            0    5     1               unit  Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;
            0    5     2  accessRestriction  Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;
            1    5     3         unitResult  Lorg/eclipse/jdt/internal/compiler/CompilationResult;
            2    5     4         parsedUnit  Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
    MethodParameters:
                   Name  Flags
      unit               
      accessRestriction  

  public void accept(org.eclipse.jdt.internal.compiler.env.ISourceType[], org.eclipse.jdt.internal.compiler.lookup.PackageBinding, org.eclipse.jdt.internal.compiler.env.AccessRestriction);
    descriptor: ([Lorg/eclipse/jdt/internal/compiler/env/ISourceType;Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding;Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=4
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
        start local 1 // org.eclipse.jdt.internal.compiler.env.ISourceType[] sourceTypes
        start local 2 // org.eclipse.jdt.internal.compiler.lookup.PackageBinding packageBinding
        start local 3 // org.eclipse.jdt.internal.compiler.env.AccessRestriction accessRestriction
         0: .line 139
            aload 1 /* sourceTypes */
            iconst_0
            aaload
            astore 4 /* sourceType */
        start local 4 // org.eclipse.jdt.internal.compiler.env.ISourceType sourceType
         1: .line 140
            goto 3
         2: .line 141
      StackMap locals: org.eclipse.jdt.internal.compiler.env.ISourceType
      StackMap stack:
            aload 4 /* sourceType */
            invokeinterface org.eclipse.jdt.internal.compiler.env.ISourceType.getEnclosingType:()Lorg/eclipse/jdt/internal/compiler/env/ISourceType;
            astore 4 /* sourceType */
         3: .line 140
      StackMap locals:
      StackMap stack:
            aload 4 /* sourceType */
            invokeinterface org.eclipse.jdt.internal.compiler.env.ISourceType.getEnclosingType:()Lorg/eclipse/jdt/internal/compiler/env/ISourceType;
            ifnonnull 2
         4: .line 142
            aload 4 /* sourceType */
            checkcast org.eclipse.jdt.internal.core.SourceTypeElementInfo
            astore 5 /* elementInfo */
        start local 5 // org.eclipse.jdt.internal.core.SourceTypeElementInfo elementInfo
         5: .line 143
            aload 5 /* elementInfo */
            invokevirtual org.eclipse.jdt.internal.core.SourceTypeElementInfo.getHandle:()Lorg/eclipse/jdt/core/IType;
            astore 6 /* type */
        start local 6 // org.eclipse.jdt.core.IType type
         6: .line 144
            aload 6 /* type */
            invokeinterface org.eclipse.jdt.core.IType.getCompilationUnit:()Lorg/eclipse/jdt/core/ICompilationUnit;
            checkcast org.eclipse.jdt.internal.compiler.env.ICompilationUnit
            astore 7 /* sourceUnit */
        start local 7 // org.eclipse.jdt.internal.compiler.env.ICompilationUnit sourceUnit
         7: .line 145
            aload 0 /* this */
            aload 7 /* sourceUnit */
            aload 3 /* accessRestriction */
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.accept:(Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;)V
         8: .line 146
            return
        end local 7 // org.eclipse.jdt.internal.compiler.env.ICompilationUnit sourceUnit
        end local 6 // org.eclipse.jdt.core.IType type
        end local 5 // org.eclipse.jdt.internal.core.SourceTypeElementInfo elementInfo
        end local 4 // org.eclipse.jdt.internal.compiler.env.ISourceType sourceType
        end local 3 // org.eclipse.jdt.internal.compiler.env.AccessRestriction accessRestriction
        end local 2 // org.eclipse.jdt.internal.compiler.lookup.PackageBinding packageBinding
        end local 1 // org.eclipse.jdt.internal.compiler.env.ISourceType[] sourceTypes
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    9     0               this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            0    9     1        sourceTypes  [Lorg/eclipse/jdt/internal/compiler/env/ISourceType;
            0    9     2     packageBinding  Lorg/eclipse/jdt/internal/compiler/lookup/PackageBinding;
            0    9     3  accessRestriction  Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;
            1    9     4         sourceType  Lorg/eclipse/jdt/internal/compiler/env/ISourceType;
            5    9     5        elementInfo  Lorg/eclipse/jdt/internal/core/SourceTypeElementInfo;
            6    9     6               type  Lorg/eclipse/jdt/core/IType;
            7    9     7         sourceUnit  Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;
    MethodParameters:
                   Name  Flags
      sourceTypes        
      packageBinding     
      accessRestriction  

  public void resolveDocument();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=8, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
         0: .line 150
            new org.eclipse.core.runtime.Path
            dup
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.document:Lorg/eclipse/jdt/core/search/SearchDocument;
            invokevirtual org.eclipse.jdt.core.search.SearchDocument.getPath:()Ljava/lang/String;
            invokespecial org.eclipse.core.runtime.Path.<init>:(Ljava/lang/String;)V
            astore 1 /* path */
        start local 1 // org.eclipse.core.runtime.IPath path
         1: .line 151
            invokestatic org.eclipse.core.resources.ResourcesPlugin.getWorkspace:()Lorg/eclipse/core/resources/IWorkspace;
            invokeinterface org.eclipse.core.resources.IWorkspace.getRoot:()Lorg/eclipse/core/resources/IWorkspaceRoot;
            aload 1 /* path */
            iconst_0
            invokeinterface org.eclipse.core.runtime.IPath.segment:(I)Ljava/lang/String;
            invokeinterface org.eclipse.core.resources.IWorkspaceRoot.getProject:(Ljava/lang/String;)Lorg/eclipse/core/resources/IProject;
            astore 2 /* project */
        start local 2 // org.eclipse.core.resources.IProject project
         2: .line 152
            invokestatic org.eclipse.jdt.internal.core.JavaModelManager.getJavaModelManager:()Lorg/eclipse/jdt/internal/core/JavaModelManager;
            invokevirtual org.eclipse.jdt.internal.core.JavaModelManager.getJavaModel:()Lorg/eclipse/jdt/internal/core/JavaModel;
            astore 3 /* model */
        start local 3 // org.eclipse.jdt.internal.core.JavaModel model
         3: .line 153
            aload 3 /* model */
            aload 2 /* project */
            invokevirtual org.eclipse.jdt.internal.core.JavaModel.getJavaProject:(Lorg/eclipse/core/resources/IResource;)Lorg/eclipse/jdt/core/IJavaProject;
            checkcast org.eclipse.jdt.internal.core.JavaProject
            astore 4 /* javaProject */
        start local 4 // org.eclipse.jdt.internal.core.JavaProject javaProject
         4: .line 155
            aload 0 /* this */
            new org.eclipse.jdt.internal.compiler.impl.CompilerOptions
            dup
            aload 4 /* javaProject */
            iconst_1
            invokevirtual org.eclipse.jdt.internal.core.JavaProject.getOptions:(Z)Ljava/util/Map;
            invokespecial org.eclipse.jdt.internal.compiler.impl.CompilerOptions.<init>:(Ljava/util/Map;)V
            putfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.options:Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;
         5: .line 157
            new org.eclipse.jdt.internal.compiler.problem.ProblemReporter
            dup
         6: .line 158
            invokestatic org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies.proceedWithAllProblems:()Lorg/eclipse/jdt/internal/compiler/IErrorHandlingPolicy;
         7: .line 159
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.options:Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;
         8: .line 160
            new org.eclipse.jdt.internal.compiler.problem.DefaultProblemFactory
            dup
            invokespecial org.eclipse.jdt.internal.compiler.problem.DefaultProblemFactory.<init>:()V
         9: .line 157
            invokespecial org.eclipse.jdt.internal.compiler.problem.ProblemReporter.<init>:(Lorg/eclipse/jdt/internal/compiler/IErrorHandlingPolicy;Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;Lorg/eclipse/jdt/internal/compiler/IProblemFactory;)V
        10: .line 156
            astore 5 /* problemReporter */
        start local 5 // org.eclipse.jdt.internal.compiler.problem.ProblemReporter problemReporter
        11: .line 163
            aload 0 /* this */
            new org.eclipse.jdt.internal.compiler.parser.Parser
            dup
            aload 5 /* problemReporter */
            iconst_0
            invokespecial org.eclipse.jdt.internal.compiler.parser.Parser.<init>:(Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter;Z)V
            putfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.basicParser:Lorg/eclipse/jdt/internal/compiler/parser/Parser;
        12: .line 164
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.basicParser:Lorg/eclipse/jdt/internal/compiler/parser/Parser;
            iconst_1
            putfield org.eclipse.jdt.internal.compiler.parser.Parser.reportOnlyOneSyntaxError:Z
        13: .line 165
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.basicParser:Lorg/eclipse/jdt/internal/compiler/parser/Parser;
            getfield org.eclipse.jdt.internal.compiler.parser.Parser.scanner:Lorg/eclipse/jdt/internal/compiler/parser/Scanner;
            aconst_null
            putfield org.eclipse.jdt.internal.compiler.parser.Scanner.taskTags:[[C
        14: .line 166
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.basicParser:Lorg/eclipse/jdt/internal/compiler/parser/Parser;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.compilationUnit:Lorg/eclipse/jdt/internal/core/jdom/CompilationUnit;
            new org.eclipse.jdt.internal.compiler.CompilationResult
            dup
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.compilationUnit:Lorg/eclipse/jdt/internal/core/jdom/CompilationUnit;
            iconst_0
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.options:Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;
            getfield org.eclipse.jdt.internal.compiler.impl.CompilerOptions.maxProblemsPerUnit:I
            invokespecial org.eclipse.jdt.internal.compiler.CompilationResult.<init>:(Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;III)V
            invokevirtual org.eclipse.jdt.internal.compiler.parser.Parser.parse:(Lorg/eclipse/jdt/internal/compiler/env/ICompilationUnit;Lorg/eclipse/jdt/internal/compiler/CompilationResult;)Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            putfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.cud:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
        15: .line 167
            invokestatic org.eclipse.jdt.internal.core.JavaModelManager.getJavaModelManager:()Lorg/eclipse/jdt/internal/core/JavaModelManager;
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.JavaModelManager.cacheZipFiles:(Ljava/lang/Object;)V
        16: .line 169
            aload 4 /* javaProject */
            invokestatic java.util.Collections.singletonList:(Ljava/lang/Object;)Ljava/util/List;
            invokestatic org.eclipse.jdt.internal.core.JavaModelManager.getJavaModelManager:()Lorg/eclipse/jdt/internal/core/JavaModelManager;
            getstatic org.eclipse.jdt.internal.core.DefaultWorkingCopyOwner.PRIMARY:Lorg/eclipse/jdt/internal/core/DefaultWorkingCopyOwner;
            iconst_1
            invokevirtual org.eclipse.jdt.internal.core.JavaModelManager.getWorkingCopies:(Lorg/eclipse/jdt/core/WorkingCopyOwner;Z)[Lorg/eclipse/jdt/core/ICompilationUnit;
            invokestatic org.eclipse.jdt.internal.core.search.matching.IndexBasedJavaSearchEnvironment.create:(Ljava/util/List;[Lorg/eclipse/jdt/core/ICompilationUnit;)Lorg/eclipse/jdt/internal/compiler/env/INameEnvironment;
            astore 6 /* nameEnvironment */
        start local 6 // org.eclipse.jdt.internal.compiler.env.INameEnvironment nameEnvironment
        17: .line 170
            aload 0 /* this */
            new org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.options:Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;
            aload 5 /* problemReporter */
            aload 6 /* nameEnvironment */
            invokespecial org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment.<init>:(Lorg/eclipse/jdt/internal/compiler/impl/ITypeRequestor;Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter;Lorg/eclipse/jdt/internal/compiler/env/INameEnvironment;)V
            putfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.lookupEnvironment:Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;
        18: .line 171
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.cud:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.reduceParseTree:(Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;)V
        19: .line 172
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.lookupEnvironment:Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.cud:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            aconst_null
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment.buildTypeBindings:(Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;Lorg/eclipse/jdt/internal/compiler/env/AccessRestriction;)V
        20: .line 173
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.lookupEnvironment:Lorg/eclipse/jdt/internal/compiler/lookup/LookupEnvironment;
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment.completeTypeBindings:()V
        21: .line 174
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.cud:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            getfield org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.scope:Lorg/eclipse/jdt/internal/compiler/lookup/CompilationUnitScope;
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.faultInTypes:()V
        22: .line 175
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.cud:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            invokevirtual org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.resolve:()V
        end local 6 // org.eclipse.jdt.internal.compiler.env.INameEnvironment nameEnvironment
        end local 5 // org.eclipse.jdt.internal.compiler.problem.ProblemReporter problemReporter
        end local 4 // org.eclipse.jdt.internal.core.JavaProject javaProject
        end local 3 // org.eclipse.jdt.internal.core.JavaModel model
        end local 2 // org.eclipse.core.resources.IProject project
        end local 1 // org.eclipse.core.runtime.IPath path
        23: .line 176
            goto 31
      StackMap locals:
      StackMap stack: java.lang.Exception
        24: astore 1 /* e */
        start local 1 // java.lang.Exception e
        25: .line 177
            getstatic org.eclipse.jdt.internal.core.search.processing.JobManager.VERBOSE:Z
            ifeq 27
        26: .line 178
            aload 1 /* e */
            invokevirtual java.lang.Exception.printStackTrace:()V
        end local 1 // java.lang.Exception e
        27: .line 181
      StackMap locals:
      StackMap stack:
            invokestatic org.eclipse.jdt.internal.core.JavaModelManager.getJavaModelManager:()Lorg/eclipse/jdt/internal/core/JavaModelManager;
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.JavaModelManager.flushZipFiles:(Ljava/lang/Object;)V
            goto 32
        28: .line 180
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
        29: .line 181
            invokestatic org.eclipse.jdt.internal.core.JavaModelManager.getJavaModelManager:()Lorg/eclipse/jdt/internal/core/JavaModelManager;
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.JavaModelManager.flushZipFiles:(Ljava/lang/Object;)V
        30: .line 182
            aload 7
            athrow
        31: .line 181
      StackMap locals:
      StackMap stack:
            invokestatic org.eclipse.jdt.internal.core.JavaModelManager.getJavaModelManager:()Lorg/eclipse/jdt/internal/core/JavaModelManager;
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.JavaModelManager.flushZipFiles:(Ljava/lang/Object;)V
        32: .line 183
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   33     0             this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            1   23     1             path  Lorg/eclipse/core/runtime/IPath;
            2   23     2          project  Lorg/eclipse/core/resources/IProject;
            3   23     3            model  Lorg/eclipse/jdt/internal/core/JavaModel;
            4   23     4      javaProject  Lorg/eclipse/jdt/internal/core/JavaProject;
           11   23     5  problemReporter  Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter;
           17   23     6  nameEnvironment  Lorg/eclipse/jdt/internal/compiler/env/INameEnvironment;
           25   27     1                e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    23      24  Class java.lang.Exception
           0    27      28  any

  private void reduceParseTree(org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
        start local 1 // org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration unit
         0: .line 190
            aload 1 /* unit */
            getfield org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.types:[Lorg/eclipse/jdt/internal/compiler/ast/TypeDeclaration;
            astore 2 /* types */
        start local 2 // org.eclipse.jdt.internal.compiler.ast.TypeDeclaration[] types
         1: .line 191
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: aload 2 /* types */
            ifnonnull 3
            iconst_0
            goto 4
      StackMap locals: org.eclipse.jdt.internal.compiler.ast.TypeDeclaration[] int
      StackMap stack:
         3: aload 2 /* types */
            arraylength
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* l */
        start local 4 // int l
         5: goto 8
         6: .line 192
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* types */
            iload 3 /* i */
            aaload
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.purgeMethodStatements:(Lorg/eclipse/jdt/internal/compiler/ast/TypeDeclaration;)V
         7: .line 191
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            iload 4 /* l */
            if_icmplt 6
        end local 4 // int l
        end local 3 // int i
         9: .line 193
            return
        end local 2 // org.eclipse.jdt.internal.compiler.ast.TypeDeclaration[] types
        end local 1 // org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration unit
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            0   10     1   unit  Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            1   10     2  types  [Lorg/eclipse/jdt/internal/compiler/ast/TypeDeclaration;
            2    9     3      i  I
            5    9     4      l  I
    MethodParameters:
      Name  Flags
      unit  

  private void purgeMethodStatements(org.eclipse.jdt.internal.compiler.ast.TypeDeclaration);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/ast/TypeDeclaration;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
        start local 1 // org.eclipse.jdt.internal.compiler.ast.TypeDeclaration type
         0: .line 196
            aload 1 /* type */
            getfield org.eclipse.jdt.internal.compiler.ast.TypeDeclaration.methods:[Lorg/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration;
            astore 2 /* methods */
        start local 2 // org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration[] methods
         1: .line 197
            iconst_0
            istore 3 /* j */
        start local 3 // int j
         2: aload 2 /* methods */
            ifnonnull 3
            iconst_0
            goto 4
      StackMap locals: org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration[] int
      StackMap stack:
         3: aload 2 /* methods */
            arraylength
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* length */
        start local 4 // int length
         5: goto 11
         6: .line 198
      StackMap locals: int
      StackMap stack:
            aload 2 /* methods */
            iload 3 /* j */
            aaload
            astore 5 /* method */
        start local 5 // org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration method
         7: .line 199
            aload 5 /* method */
            ifnull 10
            aload 5 /* method */
            getfield org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration.bits:I
            ldc 2097152
            iand
            ifne 10
         8: .line 200
            aload 5 /* method */
            aconst_null
            putfield org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration.statements:[Lorg/eclipse/jdt/internal/compiler/ast/Statement;
         9: .line 201
            aload 5 /* method */
            aconst_null
            putfield org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration.javadoc:Lorg/eclipse/jdt/internal/compiler/ast/Javadoc;
        end local 5 // org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration method
        10: .line 197
      StackMap locals:
      StackMap stack:
            iinc 3 /* j */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* j */
            iload 4 /* length */
            if_icmplt 6
        end local 4 // int length
        end local 3 // int j
        12: .line 205
            aload 1 /* type */
            getfield org.eclipse.jdt.internal.compiler.ast.TypeDeclaration.memberTypes:[Lorg/eclipse/jdt/internal/compiler/ast/TypeDeclaration;
            astore 3 /* memberTypes */
        start local 3 // org.eclipse.jdt.internal.compiler.ast.TypeDeclaration[] memberTypes
        13: .line 206
            aload 3 /* memberTypes */
            ifnull 20
        14: .line 207
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        15: aload 3 /* memberTypes */
            arraylength
            istore 5 /* l */
        start local 5 // int l
        16: goto 19
        17: .line 208
      StackMap locals: org.eclipse.jdt.internal.core.search.indexing.SourceIndexer org.eclipse.jdt.internal.compiler.ast.TypeDeclaration org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration[] org.eclipse.jdt.internal.compiler.ast.TypeDeclaration[] int int
      StackMap stack:
            aload 0 /* this */
            aload 3 /* memberTypes */
            iload 4 /* i */
            aaload
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.purgeMethodStatements:(Lorg/eclipse/jdt/internal/compiler/ast/TypeDeclaration;)V
        18: .line 207
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* i */
            iload 5 /* l */
            if_icmplt 17
        end local 5 // int l
        end local 4 // int i
        20: .line 209
      StackMap locals:
      StackMap stack:
            return
        end local 3 // org.eclipse.jdt.internal.compiler.ast.TypeDeclaration[] memberTypes
        end local 2 // org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration[] methods
        end local 1 // org.eclipse.jdt.internal.compiler.ast.TypeDeclaration type
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   21     0         this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            0   21     1         type  Lorg/eclipse/jdt/internal/compiler/ast/TypeDeclaration;
            1   21     2      methods  [Lorg/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration;
            2   12     3            j  I
            5   12     4       length  I
            7   10     5       method  Lorg/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration;
           13   21     3  memberTypes  [Lorg/eclipse/jdt/internal/compiler/ast/TypeDeclaration;
           15   20     4            i  I
           16   20     5            l  I
    MethodParameters:
      Name  Flags
      type  

  public void indexResolvedDocument();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=6, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
         0: .line 215
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.cud:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            getfield org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.functionalExpressionsCount:I
            istore 2 /* length */
        start local 2 // int length
         2: goto 28
         3: .line 216
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.cud:Lorg/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration;
            getfield org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration.functionalExpressions:[Lorg/eclipse/jdt/internal/compiler/ast/FunctionalExpression;
            iload 1 /* i */
            aaload
            astore 3 /* expression */
        start local 3 // org.eclipse.jdt.internal.compiler.ast.FunctionalExpression expression
         4: .line 217
            aload 3 /* expression */
            instanceof org.eclipse.jdt.internal.compiler.ast.LambdaExpression
            ifeq 19
         5: .line 218
            aload 3 /* expression */
            checkcast org.eclipse.jdt.internal.compiler.ast.LambdaExpression
            astore 4 /* lambdaExpression */
        start local 4 // org.eclipse.jdt.internal.compiler.ast.LambdaExpression lambdaExpression
         6: .line 219
            aload 4 /* lambdaExpression */
            getfield org.eclipse.jdt.internal.compiler.ast.LambdaExpression.binding:Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;
            ifnull 27
            aload 4 /* lambdaExpression */
            getfield org.eclipse.jdt.internal.compiler.ast.LambdaExpression.binding:Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.MethodBinding.isValidBinding:()Z
            ifeq 27
         7: .line 220
            aload 4 /* lambdaExpression */
            getfield org.eclipse.jdt.internal.compiler.ast.LambdaExpression.resolvedType:Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.TypeBinding.sourceName:()[C
            astore 5 /* superinterface */
        start local 5 // char[] superinterface
         8: .line 225
            aload 0 /* this */
            getstatic org.eclipse.jdt.internal.core.search.indexing.IIndexConstants.METHOD_DECL:[C
            aload 4 /* lambdaExpression */
            getfield org.eclipse.jdt.internal.compiler.ast.LambdaExpression.descriptor:Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;
            getfield org.eclipse.jdt.internal.compiler.lookup.MethodBinding.selector:[C
            aload 4 /* lambdaExpression */
            getfield org.eclipse.jdt.internal.compiler.ast.LambdaExpression.descriptor:Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;
            getfield org.eclipse.jdt.internal.compiler.lookup.MethodBinding.parameters:[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;
            arraylength
            invokestatic org.eclipse.jdt.internal.core.search.matching.MethodPattern.createIndexKey:([CI)[C
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.addIndexEntry:([C[C)V
         9: .line 227
            aload 0 /* this */
            iconst_0
        10: .line 228
            getstatic org.eclipse.jdt.core.compiler.CharOperation.NO_CHAR:[C
        11: .line 229
            getstatic org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.ONE_ZERO:[C
        12: .line 230
            getstatic org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.ONE_ZERO_CHAR:[[C
        13: .line 231
            getstatic org.eclipse.jdt.core.compiler.CharOperation.NO_CHAR:[C
        14: .line 232
            iconst_1
            anewarray char[]
            dup
            iconst_0
            aload 5 /* superinterface */
            aastore
        15: .line 233
            getstatic org.eclipse.jdt.core.compiler.CharOperation.NO_CHAR_CHAR:[[C
        16: .line 234
            iconst_1
        17: .line 227
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.addClassDeclaration:(I[C[C[[C[C[[C[[CZ)V
        end local 5 // char[] superinterface
        end local 4 // org.eclipse.jdt.internal.compiler.ast.LambdaExpression lambdaExpression
        18: .line 239
            goto 27
        19: .line 240
      StackMap locals: org.eclipse.jdt.internal.compiler.ast.FunctionalExpression
      StackMap stack:
            aload 3 /* expression */
            checkcast org.eclipse.jdt.internal.compiler.ast.ReferenceExpression
            astore 4 /* referenceExpression */
        start local 4 // org.eclipse.jdt.internal.compiler.ast.ReferenceExpression referenceExpression
        20: .line 241
            aload 4 /* referenceExpression */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.ReferenceExpression.isArrayConstructorReference:()Z
            ifeq 22
        21: .line 242
            goto 27
        22: .line 243
      StackMap locals: org.eclipse.jdt.internal.compiler.ast.ReferenceExpression
      StackMap stack:
            aload 4 /* referenceExpression */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.ReferenceExpression.getMethodBinding:()Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;
            astore 5 /* binding */
        start local 5 // org.eclipse.jdt.internal.compiler.lookup.MethodBinding binding
        23: .line 244
            aload 5 /* binding */
            ifnull 27
            aload 5 /* binding */
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.MethodBinding.isValidBinding:()Z
            ifeq 27
        24: .line 250
            aload 4 /* referenceExpression */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.ReferenceExpression.isMethodReference:()Z
            ifeq 26
        25: .line 251
            aload 0 /* this */
            aload 5 /* binding */
            getfield org.eclipse.jdt.internal.compiler.lookup.MethodBinding.selector:[C
            aload 5 /* binding */
            getfield org.eclipse.jdt.internal.compiler.lookup.MethodBinding.parameters:[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;
            arraylength
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.addMethodReference:([CI)V
            goto 27
        26: .line 253
      StackMap locals: org.eclipse.jdt.internal.compiler.lookup.MethodBinding
      StackMap stack:
            aload 0 /* this */
            aload 5 /* binding */
            getfield org.eclipse.jdt.internal.compiler.lookup.MethodBinding.declaringClass:Lorg/eclipse/jdt/internal/compiler/lookup/ReferenceBinding;
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.sourceName:()[C
            aload 5 /* binding */
            getfield org.eclipse.jdt.internal.compiler.lookup.MethodBinding.parameters:[Lorg/eclipse/jdt/internal/compiler/lookup/TypeBinding;
            arraylength
            invokevirtual org.eclipse.jdt.internal.core.search.indexing.SourceIndexer.addConstructorReference:([CI)V
        end local 5 // org.eclipse.jdt.internal.compiler.lookup.MethodBinding binding
        end local 4 // org.eclipse.jdt.internal.compiler.ast.ReferenceExpression referenceExpression
        end local 3 // org.eclipse.jdt.internal.compiler.ast.FunctionalExpression expression
        27: .line 215
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        28: iload 1 /* i */
            iload 2 /* length */
            if_icmplt 3
        end local 2 // int length
        end local 1 // int i
        29: .line 259
            goto 33
      StackMap locals: org.eclipse.jdt.internal.core.search.indexing.SourceIndexer
      StackMap stack: java.lang.Exception
        30: astore 1 /* e */
        start local 1 // java.lang.Exception e
        31: .line 260
            getstatic org.eclipse.jdt.internal.core.search.processing.JobManager.VERBOSE:Z
            ifeq 33
        32: .line 261
            aload 1 /* e */
            invokevirtual java.lang.Exception.printStackTrace:()V
        end local 1 // java.lang.Exception e
        33: .line 264
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jdt.internal.core.search.indexing.SourceIndexer this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   34     0                 this  Lorg/eclipse/jdt/internal/core/search/indexing/SourceIndexer;
            1   29     1                    i  I
            2   29     2               length  I
            4   27     3           expression  Lorg/eclipse/jdt/internal/compiler/ast/FunctionalExpression;
            6   18     4     lambdaExpression  Lorg/eclipse/jdt/internal/compiler/ast/LambdaExpression;
            8   18     5       superinterface  [C
           20   27     4  referenceExpression  Lorg/eclipse/jdt/internal/compiler/ast/ReferenceExpression;
           23   27     5              binding  Lorg/eclipse/jdt/internal/compiler/lookup/MethodBinding;
           31   33     1                    e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0    29      30  Class java.lang.Exception
}
SourceFile: "SourceIndexer.java"