class jdk.nashorn.internal.parser.ParserContextFunctionNode extends jdk.nashorn.internal.parser.ParserContextBaseNode
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: jdk.nashorn.internal.parser.ParserContextFunctionNode
  super_class: jdk.nashorn.internal.parser.ParserContextBaseNode
{
  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final jdk.nashorn.internal.ir.IdentNode ident;
    descriptor: Ljdk/nashorn/internal/ir/IdentNode;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final jdk.nashorn.internal.codegen.Namespace namespace;
    descriptor: Ljdk/nashorn/internal/codegen/Namespace;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final jdk.nashorn.internal.ir.FunctionNode$Kind kind;
    descriptor: Ljdk/nashorn/internal/ir/FunctionNode$Kind;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.util.List<jdk.nashorn.internal.ir.IdentNode> parameters;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Ljdk/nashorn/internal/ir/IdentNode;>;

  private final long token;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private long lastToken;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object endParserState;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private java.util.HashSet<java.lang.String> parameterBoundNames;
    descriptor: Ljava/util/HashSet;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/HashSet<Ljava/lang/String;>;

  private jdk.nashorn.internal.ir.IdentNode duplicateParameterBinding;
    descriptor: Ljdk/nashorn/internal/ir/IdentNode;
    flags: (0x0002) ACC_PRIVATE

  private boolean simpleParameterList;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private jdk.nashorn.internal.ir.Module module;
    descriptor: Ljdk/nashorn/internal/ir/Module;
    flags: (0x0002) ACC_PRIVATE

  private int debugFlags;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.util.Map<jdk.nashorn.internal.ir.IdentNode, jdk.nashorn.internal.ir.Expression> parameterExpressions;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljdk/nashorn/internal/ir/IdentNode;Ljdk/nashorn/internal/ir/Expression;>;

  public void <init>(long, jdk.nashorn.internal.ir.IdentNode, java.lang.String, jdk.nashorn.internal.codegen.Namespace, int, jdk.nashorn.internal.ir.FunctionNode$Kind, java.util.List<jdk.nashorn.internal.ir.IdentNode>);
    descriptor: (JLjdk/nashorn/internal/ir/IdentNode;Ljava/lang/String;Ljdk/nashorn/internal/codegen/Namespace;ILjdk/nashorn/internal/ir/FunctionNode$Kind;Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=8
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // long token
        start local 3 // jdk.nashorn.internal.ir.IdentNode ident
        start local 4 // java.lang.String name
        start local 5 // jdk.nashorn.internal.codegen.Namespace namespace
        start local 6 // int line
        start local 7 // jdk.nashorn.internal.ir.FunctionNode$Kind kind
        start local 8 // java.util.List parameters
         0: .line 87
            aload 0 /* this */
            invokespecial jdk.nashorn.internal.parser.ParserContextBaseNode.<init>:()V
         1: .line 71
            aload 0 /* this */
            iconst_1
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.simpleParameterList:Z
         2: .line 88
            aload 0 /* this */
            aload 3 /* ident */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.ident:Ljdk/nashorn/internal/ir/IdentNode;
         3: .line 89
            aload 0 /* this */
            aload 5 /* namespace */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.namespace:Ljdk/nashorn/internal/codegen/Namespace;
         4: .line 90
            aload 0 /* this */
            iload 6 /* line */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.line:I
         5: .line 91
            aload 0 /* this */
            aload 7 /* kind */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.kind:Ljdk/nashorn/internal/ir/FunctionNode$Kind;
         6: .line 92
            aload 0 /* this */
            aload 4 /* name */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.name:Ljava/lang/String;
         7: .line 93
            aload 0 /* this */
            aload 8 /* parameters */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameters:Ljava/util/List;
         8: .line 94
            aload 0 /* this */
            lload 1 /* token */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.token:J
         9: .line 95
            return
        end local 8 // java.util.List parameters
        end local 7 // jdk.nashorn.internal.ir.FunctionNode$Kind kind
        end local 6 // int line
        end local 5 // jdk.nashorn.internal.codegen.Namespace namespace
        end local 4 // java.lang.String name
        end local 3 // jdk.nashorn.internal.ir.IdentNode ident
        end local 1 // long token
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0   10     1       token  J
            0   10     3       ident  Ljdk/nashorn/internal/ir/IdentNode;
            0   10     4        name  Ljava/lang/String;
            0   10     5   namespace  Ljdk/nashorn/internal/codegen/Namespace;
            0   10     6        line  I
            0   10     7        kind  Ljdk/nashorn/internal/ir/FunctionNode$Kind;
            0   10     8  parameters  Ljava/util/List<Ljdk/nashorn/internal/ir/IdentNode;>;
    Signature: (JLjdk/nashorn/internal/ir/IdentNode;Ljava/lang/String;Ljdk/nashorn/internal/codegen/Namespace;ILjdk/nashorn/internal/ir/FunctionNode$Kind;Ljava/util/List<Ljdk/nashorn/internal/ir/IdentNode;>;)V
    MethodParameters:
            Name  Flags
      token       final
      ident       final
      name        final
      namespace   final
      line        final
      kind        final
      parameters  final

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 101
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.name:Ljava/lang/String;
            areturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public jdk.nashorn.internal.ir.IdentNode getIdent();
    descriptor: ()Ljdk/nashorn/internal/ir/IdentNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 108
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.ident:Ljdk/nashorn/internal/ir/IdentNode;
            areturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public boolean isProgram();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 116
            aload 0 /* this */
            sipush 8192
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.getFlag:(I)I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public boolean isStrict();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 123
            aload 0 /* this */
            iconst_4
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.getFlag:(I)I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public boolean hasNestedEval();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 130
            aload 0 /* this */
            bipush 64
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.getFlag:(I)I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public boolean hasScopeBlock();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 138
            aload 0 /* this */
            sipush 128
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.getFlag:(I)I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public java.lang.String uniqueName(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // java.lang.String base
         0: .line 147
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.namespace:Ljdk/nashorn/internal/codegen/Namespace;
            aload 1 /* base */
            invokevirtual jdk.nashorn.internal.codegen.Namespace.uniqueName:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String base
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    1     1  base  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      base  final

  public int getLineNumber();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 154
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.line:I
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public jdk.nashorn.internal.ir.FunctionNode$Kind getKind();
    descriptor: ()Ljdk/nashorn/internal/ir/FunctionNode$Kind;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 161
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.kind:Ljdk/nashorn/internal/ir/FunctionNode$Kind;
            areturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public java.util.List<jdk.nashorn.internal.ir.IdentNode> getParameters();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 169
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameters:Ljava/util/List;
            areturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
    Signature: ()Ljava/util/List<Ljdk/nashorn/internal/ir/IdentNode;>;

  void setParameters(java.util.List<jdk.nashorn.internal.ir.IdentNode>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // java.util.List parameters
         0: .line 173
            aload 0 /* this */
            aload 1 /* parameters */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameters:Ljava/util/List;
         1: .line 174
            return
        end local 1 // java.util.List parameters
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    2     1  parameters  Ljava/util/List<Ljdk/nashorn/internal/ir/IdentNode;>;
    Signature: (Ljava/util/List<Ljdk/nashorn/internal/ir/IdentNode;>;)V
    MethodParameters:
            Name  Flags
      parameters  final

  public java.util.Map<jdk.nashorn.internal.ir.IdentNode, jdk.nashorn.internal.ir.Expression> getParameterExpressions();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 182
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameterExpressions:Ljava/util/Map;
            areturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
    Signature: ()Ljava/util/Map<Ljdk/nashorn/internal/ir/IdentNode;Ljdk/nashorn/internal/ir/Expression;>;

  void addParameterExpression(jdk.nashorn.internal.ir.IdentNode, jdk.nashorn.internal.ir.Expression);
    descriptor: (Ljdk/nashorn/internal/ir/IdentNode;Ljdk/nashorn/internal/ir/Expression;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // jdk.nashorn.internal.ir.IdentNode ident
        start local 2 // jdk.nashorn.internal.ir.Expression node
         0: .line 186
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameterExpressions:Ljava/util/Map;
            ifnonnull 2
         1: .line 187
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameterExpressions:Ljava/util/Map;
         2: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameterExpressions:Ljava/util/Map;
            aload 1 /* ident */
            aload 2 /* node */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 190
            return
        end local 2 // jdk.nashorn.internal.ir.Expression node
        end local 1 // jdk.nashorn.internal.ir.IdentNode ident
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    4     1  ident  Ljdk/nashorn/internal/ir/IdentNode;
            0    4     2   node  Ljdk/nashorn/internal/ir/Expression;
    MethodParameters:
       Name  Flags
      ident  final
      node   final

  public void setLastToken(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // long token
         0: .line 197
            aload 0 /* this */
            lload 1 /* token */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.lastToken:J
         1: .line 199
            return
        end local 1 // long token
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    2     1  token  J
    MethodParameters:
       Name  Flags
      token  final

  public long getLastToken();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 205
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.lastToken:J
            lreturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public java.lang.Object getEndParserState();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 213
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.endParserState:Ljava/lang/Object;
            areturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public void setEndParserState(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // java.lang.Object endParserState
         0: .line 221
            aload 0 /* this */
            aload 1 /* endParserState */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.endParserState:Ljava/lang/Object;
         1: .line 222
            return
        end local 1 // java.lang.Object endParserState
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    2     1  endParserState  Ljava/lang/Object;
    MethodParameters:
                Name  Flags
      endParserState  final

  public int getId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 229
            aload 0 /* this */
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.isProgram:()Z
            ifeq 1
            iconst_m1
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.token:J
            invokestatic jdk.nashorn.internal.parser.Token.descPosition:(J)I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  int getDebugFlags();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 238
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.debugFlags:I
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  void setDebugFlag(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // int debugFlag
         0: .line 247
            aload 0 /* this */
            dup
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.debugFlags:I
            iload 1 /* debugFlag */
            ior
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.debugFlags:I
         1: .line 248
            return
        end local 1 // int debugFlag
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    2     1  debugFlag  I
    MethodParameters:
           Name  Flags
      debugFlag  final

  public boolean isMethod();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 251
            aload 0 /* this */
            ldc 2097152
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.getFlag:(I)I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public boolean isClassConstructor();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 255
            aload 0 /* this */
            ldc 4194304
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.getFlag:(I)I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public boolean isSubclassConstructor();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 259
            aload 0 /* this */
            ldc 8388608
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.getFlag:(I)I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  boolean addParameterBinding(jdk.nashorn.internal.ir.IdentNode);
    descriptor: (Ljdk/nashorn/internal/ir/IdentNode;)Z
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // jdk.nashorn.internal.ir.IdentNode bindingIdentifier
         0: .line 263
            aload 1 /* bindingIdentifier */
            invokestatic jdk.nashorn.internal.parser.Parser.isArguments:(Ljdk/nashorn/internal/ir/IdentNode;)Z
            ifeq 2
         1: .line 264
            aload 0 /* this */
            sipush 256
            invokevirtual jdk.nashorn.internal.parser.ParserContextFunctionNode.setFlag:(I)I
            pop
         2: .line 267
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameterBoundNames:Ljava/util/HashSet;
            ifnonnull 4
         3: .line 268
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameterBoundNames:Ljava/util/HashSet;
         4: .line 270
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.parameterBoundNames:Ljava/util/HashSet;
            aload 1 /* bindingIdentifier */
            invokevirtual jdk.nashorn.internal.ir.IdentNode.getName:()Ljava/lang/String;
            invokevirtual java.util.HashSet.add:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 271
            iconst_1
            ireturn
         6: .line 273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* bindingIdentifier */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.duplicateParameterBinding:Ljdk/nashorn/internal/ir/IdentNode;
         7: .line 274
            iconst_0
            ireturn
        end local 1 // jdk.nashorn.internal.ir.IdentNode bindingIdentifier
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0               this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    8     1  bindingIdentifier  Ljdk/nashorn/internal/ir/IdentNode;
    MethodParameters:
                   Name  Flags
      bindingIdentifier  final

  public jdk.nashorn.internal.ir.IdentNode getDuplicateParameterBinding();
    descriptor: ()Ljdk/nashorn/internal/ir/IdentNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 279
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.duplicateParameterBinding:Ljdk/nashorn/internal/ir/IdentNode;
            areturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public boolean isSimpleParameterList();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 283
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.simpleParameterList:Z
            ireturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public void setSimpleParameterList(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // boolean simpleParameterList
         0: .line 287
            aload 0 /* this */
            iload 1 /* simpleParameterList */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.simpleParameterList:Z
         1: .line 288
            return
        end local 1 // boolean simpleParameterList
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    2     1  simpleParameterList  Z
    MethodParameters:
                     Name  Flags
      simpleParameterList  final

  public jdk.nashorn.internal.ir.Module getModule();
    descriptor: ()Ljdk/nashorn/internal/ir/Module;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
         0: .line 291
            aload 0 /* this */
            getfield jdk.nashorn.internal.parser.ParserContextFunctionNode.module:Ljdk/nashorn/internal/ir/Module;
            areturn
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;

  public void setModule(jdk.nashorn.internal.ir.Module);
    descriptor: (Ljdk/nashorn/internal/ir/Module;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
        start local 1 // jdk.nashorn.internal.ir.Module module
         0: .line 295
            aload 0 /* this */
            aload 1 /* module */
            putfield jdk.nashorn.internal.parser.ParserContextFunctionNode.module:Ljdk/nashorn/internal/ir/Module;
         1: .line 296
            return
        end local 1 // jdk.nashorn.internal.ir.Module module
        end local 0 // jdk.nashorn.internal.parser.ParserContextFunctionNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljdk/nashorn/internal/parser/ParserContextFunctionNode;
            0    2     1  module  Ljdk/nashorn/internal/ir/Module;
    MethodParameters:
        Name  Flags
      module  final
}
SourceFile: "ParserContextFunctionNode.java"
InnerClasses:
  public final Kind = jdk.nashorn.internal.ir.FunctionNode$Kind of jdk.nashorn.internal.ir.FunctionNode