abstract class com.oracle.js.parser.ParserContextBaseNode implements com.oracle.js.parser.ParserContextNode
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.js.parser.ParserContextBaseNode
  super_class: java.lang.Object
{
  protected int flags;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  private java.util.List<com.oracle.js.parser.ir.Statement> statements;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lcom/oracle/js/parser/ir/Statement;>;

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
         0: .line 60
            aload 0 /* this */
            iconst_0
            invokespecial com.oracle.js.parser.ParserContextBaseNode.<init>:(I)V
         1: .line 61
            return
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/js/parser/ParserContextBaseNode;

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
        start local 1 // int flags
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 64
            aload 0 /* this */
            iload 1 /* flags */
            putfield com.oracle.js.parser.ParserContextBaseNode.flags:I
         2: .line 65
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.oracle.js.parser.ParserContextBaseNode.statements:Ljava/util/List;
         3: .line 66
            return
        end local 1 // int flags
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/oracle/js/parser/ParserContextBaseNode;
            0    4     1  flags  I
    MethodParameters:
       Name  Flags
      flags  

  public int getFlags();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
         0: .line 73
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContextBaseNode.flags:I
            ireturn
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/ParserContextBaseNode;

  protected int getFlag(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
        start local 1 // int flag
         0: .line 83
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContextBaseNode.flags:I
            iload 1 /* flag */
            iand
            ireturn
        end local 1 // int flag
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/ParserContextBaseNode;
            0    1     1  flag  I
    MethodParameters:
      Name  Flags
      flag  final

  public int setFlag(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
        start local 1 // int flag
         0: .line 92
            aload 0 /* this */
            dup
            getfield com.oracle.js.parser.ParserContextBaseNode.flags:I
            iload 1 /* flag */
            ior
            putfield com.oracle.js.parser.ParserContextBaseNode.flags:I
         1: .line 93
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContextBaseNode.flags:I
            ireturn
        end local 1 // int flag
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/js/parser/ParserContextBaseNode;
            0    2     1  flag  I
    MethodParameters:
      Name  Flags
      flag  final

  public int clearFlag(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
        start local 1 // int flag
         0: .line 97
            aload 0 /* this */
            dup
            getfield com.oracle.js.parser.ParserContextBaseNode.flags:I
            iload 1 /* flag */
            iconst_m1
            ixor
            iand
            putfield com.oracle.js.parser.ParserContextBaseNode.flags:I
         1: .line 98
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContextBaseNode.flags:I
            ireturn
        end local 1 // int flag
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/js/parser/ParserContextBaseNode;
            0    2     1  flag  I
    MethodParameters:
      Name  Flags
      flag  final

  public java.util.List<com.oracle.js.parser.ir.Statement> getStatements();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
         0: .line 106
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContextBaseNode.statements:Ljava/util/List;
            areturn
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/ParserContextBaseNode;
    Signature: ()Ljava/util/List<Lcom/oracle/js/parser/ir/Statement;>;

  public void setStatements(java.util.List<com.oracle.js.parser.ir.Statement>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
        start local 1 // java.util.List statements
         0: .line 114
            aload 0 /* this */
            aload 1 /* statements */
            putfield com.oracle.js.parser.ParserContextBaseNode.statements:Ljava/util/List;
         1: .line 115
            return
        end local 1 // java.util.List statements
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/oracle/js/parser/ParserContextBaseNode;
            0    2     1  statements  Ljava/util/List<Lcom/oracle/js/parser/ir/Statement;>;
    Signature: (Ljava/util/List<Lcom/oracle/js/parser/ir/Statement;>;)V
    MethodParameters:
            Name  Flags
      statements  final

  public void appendStatement(com.oracle.js.parser.ir.Statement);
    descriptor: (Lcom/oracle/js/parser/ir/Statement;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
        start local 1 // com.oracle.js.parser.ir.Statement statement
         0: .line 124
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContextBaseNode.statements:Ljava/util/List;
            aload 1 /* statement */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 125
            return
        end local 1 // com.oracle.js.parser.ir.Statement statement
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/oracle/js/parser/ParserContextBaseNode;
            0    2     1  statement  Lcom/oracle/js/parser/ir/Statement;
    MethodParameters:
           Name  Flags
      statement  final

  public void prependStatement(com.oracle.js.parser.ir.Statement);
    descriptor: (Lcom/oracle/js/parser/ir/Statement;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.ParserContextBaseNode this
        start local 1 // com.oracle.js.parser.ir.Statement statement
         0: .line 134
            aload 0 /* this */
            getfield com.oracle.js.parser.ParserContextBaseNode.statements:Ljava/util/List;
            iconst_0
            aload 1 /* statement */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         1: .line 135
            return
        end local 1 // com.oracle.js.parser.ir.Statement statement
        end local 0 // com.oracle.js.parser.ParserContextBaseNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/oracle/js/parser/ParserContextBaseNode;
            0    2     1  statement  Lcom/oracle/js/parser/ir/Statement;
    MethodParameters:
           Name  Flags
      statement  final
}
SourceFile: "ParserContextBaseNode.java"