public class org.eclipse.jdt.internal.compiler.ast.RequiresStatement extends org.eclipse.jdt.internal.compiler.ast.ModuleStatement
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.compiler.ast.RequiresStatement
  super_class: org.eclipse.jdt.internal.compiler.ast.ModuleStatement
{
  public org.eclipse.jdt.internal.compiler.ast.ModuleReference module;
    descriptor: Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;
    flags: (0x0001) ACC_PUBLIC

  public org.eclipse.jdt.internal.compiler.lookup.ModuleBinding resolvedBinding;
    descriptor: Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
    flags: (0x0001) ACC_PUBLIC

  public int modifiers;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public int modifiersSourceStart;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public void <init>(org.eclipse.jdt.internal.compiler.ast.ModuleReference);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
        start local 1 // org.eclipse.jdt.internal.compiler.ast.ModuleReference module
         0: .line 28
            aload 0 /* this */
            invokespecial org.eclipse.jdt.internal.compiler.ast.ModuleStatement.<init>:()V
         1: .line 25
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.modifiers:I
         2: .line 29
            aload 0 /* this */
            aload 1 /* module */
            putfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.module:Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;
         3: .line 30
            return
        end local 1 // org.eclipse.jdt.internal.compiler.ast.ModuleReference module
        end local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/jdt/internal/compiler/ast/RequiresStatement;
            0    4     1  module  Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;
    MethodParameters:
        Name  Flags
      module  

  public boolean isTransitive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
         0: .line 32
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.modifiers:I
            bipush 32
            iand
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/compiler/ast/RequiresStatement;

  public boolean isStatic();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
         0: .line 35
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.modifiers:I
            bipush 64
            iand
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/compiler/ast/RequiresStatement;

  public java.lang.StringBuffer print(int, java.lang.StringBuffer);
    descriptor: (ILjava/lang/StringBuffer;)Ljava/lang/StringBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
        start local 1 // int indent
        start local 2 // java.lang.StringBuffer output
         0: .line 39
            aload 2 /* output */
            ldc "requires "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         1: .line 40
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.RequiresStatement.isTransitive:()Z
            ifeq 3
         2: .line 41
            aload 2 /* output */
            ldc "transitive "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         3: .line 42
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.RequiresStatement.isStatic:()Z
            ifeq 5
         4: .line 43
            aload 2 /* output */
            ldc "static "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         5: .line 44
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.module:Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;
            iload 1 /* indent */
            aload 2 /* output */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.ModuleReference.print:(ILjava/lang/StringBuffer;)Ljava/lang/StringBuffer;
            pop
         6: .line 45
            aload 2 /* output */
            ldc ";"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         7: .line 46
            aload 2 /* output */
            areturn
        end local 2 // java.lang.StringBuffer output
        end local 1 // int indent
        end local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/eclipse/jdt/internal/compiler/ast/RequiresStatement;
            0    8     1  indent  I
            0    8     2  output  Ljava/lang/StringBuffer;
    MethodParameters:
        Name  Flags
      indent  
      output  

  public org.eclipse.jdt.internal.compiler.lookup.ModuleBinding resolve(org.eclipse.jdt.internal.compiler.lookup.Scope);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
        start local 1 // org.eclipse.jdt.internal.compiler.lookup.Scope scope
         0: .line 49
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.resolvedBinding:Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            ifnull 2
         1: .line 50
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.resolvedBinding:Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            areturn
         2: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.module:Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;
            aload 1 /* scope */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.ModuleReference.resolve:(Lorg/eclipse/jdt/internal/compiler/lookup/Scope;)Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            putfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.resolvedBinding:Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
         3: .line 52
            aload 1 /* scope */
            ifnull 9
         4: .line 53
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.resolvedBinding:Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            ifnonnull 7
         5: .line 54
            aload 1 /* scope */
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.Scope.problemReporter:()Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.module:Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;
            invokevirtual org.eclipse.jdt.internal.compiler.problem.ProblemReporter.invalidModule:(Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;)V
         6: .line 55
            goto 9
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.resolvedBinding:Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.ModuleBinding.hasUnstableAutoName:()Z
            ifeq 9
         8: .line 56
            aload 1 /* scope */
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.Scope.problemReporter:()Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.module:Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;
            invokevirtual org.eclipse.jdt.internal.compiler.problem.ProblemReporter.autoModuleWithUnstableName:(Lorg/eclipse/jdt/internal/compiler/ast/ModuleReference;)V
         9: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.RequiresStatement.resolvedBinding:Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            areturn
        end local 1 // org.eclipse.jdt.internal.compiler.lookup.Scope scope
        end local 0 // org.eclipse.jdt.internal.compiler.ast.RequiresStatement this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/eclipse/jdt/internal/compiler/ast/RequiresStatement;
            0   10     1  scope  Lorg/eclipse/jdt/internal/compiler/lookup/Scope;
    MethodParameters:
       Name  Flags
      scope  
}
SourceFile: "RequiresStatement.java"