final class jdk.nashorn.api.tree.SwitchTreeImpl extends jdk.nashorn.api.tree.StatementTreeImpl implements jdk.nashorn.api.tree.SwitchTree
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: jdk.nashorn.api.tree.SwitchTreeImpl
  super_class: jdk.nashorn.api.tree.StatementTreeImpl
{
  private final jdk.nashorn.api.tree.ExpressionTree expr;
    descriptor: Ljdk/nashorn/api/tree/ExpressionTree;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<? extends jdk.nashorn.api.tree.CaseTree> cases;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<+Ljdk/nashorn/api/tree/CaseTree;>;

  void <init>(jdk.nashorn.internal.ir.SwitchNode, jdk.nashorn.api.tree.ExpressionTree, java.util.List<? extends jdk.nashorn.api.tree.CaseTree>);
    descriptor: (Ljdk/nashorn/internal/ir/SwitchNode;Ljdk/nashorn/api/tree/ExpressionTree;Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
        start local 1 // jdk.nashorn.internal.ir.SwitchNode node
        start local 2 // jdk.nashorn.api.tree.ExpressionTree expr
        start local 3 // java.util.List cases
         0: .line 37
            aload 0 /* this */
            aload 1 /* node */
            invokespecial jdk.nashorn.api.tree.StatementTreeImpl.<init>:(Ljdk/nashorn/internal/ir/Statement;)V
         1: .line 38
            aload 0 /* this */
            aload 2 /* expr */
            putfield jdk.nashorn.api.tree.SwitchTreeImpl.expr:Ljdk/nashorn/api/tree/ExpressionTree;
         2: .line 39
            aload 0 /* this */
            aload 3 /* cases */
            putfield jdk.nashorn.api.tree.SwitchTreeImpl.cases:Ljava/util/List;
         3: .line 40
            return
        end local 3 // java.util.List cases
        end local 2 // jdk.nashorn.api.tree.ExpressionTree expr
        end local 1 // jdk.nashorn.internal.ir.SwitchNode node
        end local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljdk/nashorn/api/tree/SwitchTreeImpl;
            0    4     1   node  Ljdk/nashorn/internal/ir/SwitchNode;
            0    4     2   expr  Ljdk/nashorn/api/tree/ExpressionTree;
            0    4     3  cases  Ljava/util/List<+Ljdk/nashorn/api/tree/CaseTree;>;
    Signature: (Ljdk/nashorn/internal/ir/SwitchNode;Ljdk/nashorn/api/tree/ExpressionTree;Ljava/util/List<+Ljdk/nashorn/api/tree/CaseTree;>;)V
    MethodParameters:
       Name  Flags
      node   final
      expr   final
      cases  final

  public jdk.nashorn.api.tree.Tree$Kind getKind();
    descriptor: ()Ljdk/nashorn/api/tree/Tree$Kind;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
         0: .line 44
            getstatic jdk.nashorn.api.tree.Tree$Kind.SWITCH:Ljdk/nashorn/api/tree/Tree$Kind;
            areturn
        end local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/SwitchTreeImpl;

  public jdk.nashorn.api.tree.ExpressionTree getExpression();
    descriptor: ()Ljdk/nashorn/api/tree/ExpressionTree;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
         0: .line 49
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.SwitchTreeImpl.expr:Ljdk/nashorn/api/tree/ExpressionTree;
            areturn
        end local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/SwitchTreeImpl;

  public java.util.List<? extends jdk.nashorn.api.tree.CaseTree> getCases();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
         0: .line 54
            aload 0 /* this */
            getfield jdk.nashorn.api.tree.SwitchTreeImpl.cases:Ljava/util/List;
            areturn
        end local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/api/tree/SwitchTreeImpl;
    Signature: ()Ljava/util/List<+Ljdk/nashorn/api/tree/CaseTree;>;

  public <R, D> R accept(jdk.nashorn.api.tree.TreeVisitor<R, D>, );
    descriptor: (Ljdk/nashorn/api/tree/TreeVisitor;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
        start local 1 // jdk.nashorn.api.tree.TreeVisitor visitor
        start local 2 // java.lang.Object data
         0: .line 59
            aload 1 /* visitor */
            aload 0 /* this */
            aload 2 /* data */
            invokeinterface jdk.nashorn.api.tree.TreeVisitor.visitSwitch:(Ljdk/nashorn/api/tree/SwitchTree;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object data
        end local 1 // jdk.nashorn.api.tree.TreeVisitor visitor
        end local 0 // jdk.nashorn.api.tree.SwitchTreeImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljdk/nashorn/api/tree/SwitchTreeImpl;
            0    1     1  visitor  Ljdk/nashorn/api/tree/TreeVisitor<TR;TD;>;
            0    1     2     data  TD;
    Signature: <R:Ljava/lang/Object;D:Ljava/lang/Object;>(Ljdk/nashorn/api/tree/TreeVisitor<TR;TD;>;TD;)TR;
    MethodParameters:
         Name  Flags
      visitor  final
      data     final
}
SourceFile: "SwitchTreeImpl.java"
InnerClasses:
  public final Kind = jdk.nashorn.api.tree.Tree$Kind of jdk.nashorn.api.tree.Tree