class com.oracle.js.parser.Parser$5 implements java.util.function.Consumer<com.oracle.js.parser.ir.IdentNode>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.js.parser.Parser$5
  super_class: java.lang.Object
{
  final com.oracle.js.parser.Parser this$0;
    descriptor: Lcom/oracle/js/parser/Parser;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private final int val$catchLine;
    descriptor: I
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final com.oracle.js.parser.ParserContextBlockNode val$catchBlock;
    descriptor: Lcom/oracle/js/parser/ParserContextBlockNode;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(com.oracle.js.parser.Parser, int, com.oracle.js.parser.ParserContextBlockNode);
    descriptor: (Lcom/oracle/js/parser/Parser;ILcom/oracle/js/parser/ParserContextBlockNode;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.oracle.js.parser.Parser$5 this
         0: .line 3535
            aload 0 /* this */
            aload 1
            putfield com.oracle.js.parser.Parser$5.this$0:Lcom/oracle/js/parser/Parser;
            aload 0 /* this */
            iload 2
            putfield com.oracle.js.parser.Parser$5.val$catchLine:I
            aload 0 /* this */
            aload 3
            putfield com.oracle.js.parser.Parser$5.val$catchBlock:Lcom/oracle/js/parser/ParserContextBlockNode;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.oracle.js.parser.Parser$5 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/Parser$5;
    MethodParameters:
                Name  Flags
      this$0          final
      val$catchLine   final
      val$catchBlock  final

  public void accept(com.oracle.js.parser.ir.IdentNode);
    descriptor: (Lcom/oracle/js/parser/ir/IdentNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=3, args_size=2
        start local 0 // com.oracle.js.parser.Parser$5 this
        start local 1 // com.oracle.js.parser.ir.IdentNode identNode
         0: .line 3538
            aload 0 /* this */
            getfield com.oracle.js.parser.Parser$5.this$0:Lcom/oracle/js/parser/Parser;
            aload 1 /* identNode */
            ldc "catch parameter"
            invokevirtual com.oracle.js.parser.Parser.verifyStrictIdent:(Lcom/oracle/js/parser/ir/IdentNode;Ljava/lang/String;)V
         1: .line 3540
            new com.oracle.js.parser.ir.VarNode
            dup
            aload 0 /* this */
            getfield com.oracle.js.parser.Parser$5.val$catchLine:I
            aload 1 /* identNode */
            invokevirtual com.oracle.js.parser.ir.IdentNode.getToken:()J
            getstatic com.oracle.js.parser.TokenType.LET:Lcom/oracle/js/parser/TokenType;
            invokestatic com.oracle.js.parser.Token.recast:(JLcom/oracle/js/parser/TokenType;)J
            aload 1 /* identNode */
            invokevirtual com.oracle.js.parser.ir.IdentNode.getFinish:()I
            aload 1 /* identNode */
            invokevirtual com.oracle.js.parser.ir.IdentNode.setIsDeclaredHere:()Lcom/oracle/js/parser/ir/IdentNode;
            aconst_null
            bipush 17
            invokespecial com.oracle.js.parser.ir.VarNode.<init>:(IJILcom/oracle/js/parser/ir/IdentNode;Lcom/oracle/js/parser/ir/Expression;I)V
            astore 2 /* var */
        start local 2 // com.oracle.js.parser.ir.VarNode var
         2: .line 3541
            aload 0 /* this */
            getfield com.oracle.js.parser.Parser$5.this$0:Lcom/oracle/js/parser/Parser;
            aload 2 /* var */
            invokevirtual com.oracle.js.parser.Parser.appendStatement:(Lcom/oracle/js/parser/ir/Statement;)V
         3: .line 3542
            aload 0 /* this */
            getfield com.oracle.js.parser.Parser$5.this$0:Lcom/oracle/js/parser/Parser;
            aload 0 /* this */
            getfield com.oracle.js.parser.Parser$5.val$catchBlock:Lcom/oracle/js/parser/ParserContextBlockNode;
            invokevirtual com.oracle.js.parser.ParserContextBlockNode.getScope:()Lcom/oracle/js/parser/ir/Scope;
            aload 2 /* var */
            invokevirtual com.oracle.js.parser.Parser.declareVar:(Lcom/oracle/js/parser/ir/Scope;Lcom/oracle/js/parser/ir/VarNode;)V
         4: .line 3543
            return
        end local 2 // com.oracle.js.parser.ir.VarNode var
        end local 1 // com.oracle.js.parser.ir.IdentNode identNode
        end local 0 // com.oracle.js.parser.Parser$5 this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/oracle/js/parser/Parser$5;
            0    5     1  identNode  Lcom/oracle/js/parser/ir/IdentNode;
            2    5     2        var  Lcom/oracle/js/parser/ir/VarNode;
    MethodParameters:
           Name  Flags
      identNode  

  public void accept(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.js.parser.ir.IdentNode
            invokevirtual com.oracle.js.parser.Parser$5.accept:(Lcom/oracle/js/parser/ir/IdentNode;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/util/function/Consumer<Lcom/oracle/js/parser/ir/IdentNode;>;
SourceFile: "Parser.java"
EnclosingMethod: com.oracle.js.parser.Parser.catchBlock:(JILcom/oracle/js/parser/ir/IdentNode;Lcom/oracle/js/parser/ir/Expression;Lcom/oracle/js/parser/ir/Expression;)Lcom/oracle/js/parser/ir/Block;
NestHost: com.oracle.js.parser.Parser
InnerClasses:
  com.oracle.js.parser.Parser$5