public abstract class com.oracle.js.parser.ir.Statement extends com.oracle.js.parser.ir.Node implements com.oracle.js.parser.ir.Terminal
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.js.parser.ir.Statement
  super_class: com.oracle.js.parser.ir.Node
{
  private final int lineNumber;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(int, long, int);
    descriptor: (IJI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.oracle.js.parser.ir.Statement this
        start local 1 // int lineNumber
        start local 2 // long token
        start local 4 // int finish
         0: .line 61
            aload 0 /* this */
            lload 2 /* token */
            iload 4 /* finish */
            invokespecial com.oracle.js.parser.ir.Node.<init>:(JI)V
         1: .line 62
            aload 0 /* this */
            iload 1 /* lineNumber */
            putfield com.oracle.js.parser.ir.Statement.lineNumber:I
         2: .line 63
            return
        end local 4 // int finish
        end local 2 // long token
        end local 1 // int lineNumber
        end local 0 // com.oracle.js.parser.ir.Statement this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/oracle/js/parser/ir/Statement;
            0    3     1  lineNumber  I
            0    3     2       token  J
            0    3     4      finish  I
    MethodParameters:
            Name  Flags
      lineNumber  final
      token       final
      finish      final

  public void <init>(int, long, int, int);
    descriptor: (IJII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // com.oracle.js.parser.ir.Statement this
        start local 1 // int lineNumber
        start local 2 // long token
        start local 4 // int start
        start local 5 // int finish
         0: .line 74
            aload 0 /* this */
            lload 2 /* token */
            iload 4 /* start */
            iload 5 /* finish */
            invokespecial com.oracle.js.parser.ir.Node.<init>:(JII)V
         1: .line 75
            aload 0 /* this */
            iload 1 /* lineNumber */
            putfield com.oracle.js.parser.ir.Statement.lineNumber:I
         2: .line 76
            return
        end local 5 // int finish
        end local 4 // int start
        end local 2 // long token
        end local 1 // int lineNumber
        end local 0 // com.oracle.js.parser.ir.Statement this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/oracle/js/parser/ir/Statement;
            0    3     1  lineNumber  I
            0    3     2       token  J
            0    3     4       start  I
            0    3     5      finish  I
    MethodParameters:
            Name  Flags
      lineNumber  final
      token       final
      start       final
      finish      final

  protected void <init>(com.oracle.js.parser.ir.Statement);
    descriptor: (Lcom/oracle/js/parser/ir/Statement;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.ir.Statement this
        start local 1 // com.oracle.js.parser.ir.Statement node
         0: .line 84
            aload 0 /* this */
            aload 1 /* node */
            invokespecial com.oracle.js.parser.ir.Node.<init>:(Lcom/oracle/js/parser/ir/Node;)V
         1: .line 85
            aload 0 /* this */
            aload 1 /* node */
            getfield com.oracle.js.parser.ir.Statement.lineNumber:I
            putfield com.oracle.js.parser.ir.Statement.lineNumber:I
         2: .line 86
            return
        end local 1 // com.oracle.js.parser.ir.Statement node
        end local 0 // com.oracle.js.parser.ir.Statement this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/js/parser/ir/Statement;
            0    3     1  node  Lcom/oracle/js/parser/ir/Statement;
    MethodParameters:
      Name  Flags
      node  final

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

  public boolean isTerminal();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.ir.Statement this
         0: .line 104
            iconst_0
            ireturn
        end local 0 // com.oracle.js.parser.ir.Statement this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/ir/Statement;

  public boolean hasGoto();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.ir.Statement this
         0: .line 114
            iconst_0
            ireturn
        end local 0 // com.oracle.js.parser.ir.Statement this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/ir/Statement;

  public final boolean hasTerminalFlags();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.ir.Statement this
         0: .line 123
            aload 0 /* this */
            invokevirtual com.oracle.js.parser.ir.Statement.isTerminal:()Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.oracle.js.parser.ir.Statement.hasGoto:()Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // com.oracle.js.parser.ir.Statement this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/js/parser/ir/Statement;

  public boolean isCompletionValueNeverEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.ir.Statement this
         0: .line 130
            iconst_0
            ireturn
        end local 0 // com.oracle.js.parser.ir.Statement this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/ir/Statement;
}
SourceFile: "Statement.java"