public abstract class org.jruby.ast.Colon2Node extends org.jruby.ast.Colon3Node implements org.jruby.ast.types.INameNode
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.jruby.ast.Colon2Node
  super_class: org.jruby.ast.Colon3Node
{
  protected final org.jruby.ast.Node leftNode;
    descriptor: Lorg/jruby/ast/Node;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  public void <init>(org.jruby.lexer.yacc.ISourcePosition, org.jruby.ast.Node, org.jruby.RubySymbol);
    descriptor: (Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/ast/Node;Lorg/jruby/RubySymbol;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jruby.ast.Colon2Node this
        start local 1 // org.jruby.lexer.yacc.ISourcePosition position
        start local 2 // org.jruby.ast.Node leftNode
        start local 3 // org.jruby.RubySymbol name
         0: .line 49
            aload 0 /* this */
            aload 1 /* position */
            aload 3 /* name */
            aload 2 /* leftNode */
            ifnull 1
            aload 2 /* leftNode */
            getfield org.jruby.ast.Node.containsVariableAssignment:Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol
      StackMap stack: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.RubySymbol
         1: iconst_0
      StackMap locals: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol
      StackMap stack: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.RubySymbol int
         2: invokespecial org.jruby.ast.Colon3Node.<init>:(Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/RubySymbol;Z)V
         3: .line 50
            aload 0 /* this */
            aload 2 /* leftNode */
            putfield org.jruby.ast.Colon2Node.leftNode:Lorg/jruby/ast/Node;
         4: .line 51
            return
        end local 3 // org.jruby.RubySymbol name
        end local 2 // org.jruby.ast.Node leftNode
        end local 1 // org.jruby.lexer.yacc.ISourcePosition position
        end local 0 // org.jruby.ast.Colon2Node this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/jruby/ast/Colon2Node;
            0    5     1  position  Lorg/jruby/lexer/yacc/ISourcePosition;
            0    5     2  leftNode  Lorg/jruby/ast/Node;
            0    5     3      name  Lorg/jruby/RubySymbol;
    MethodParameters:
          Name  Flags
      position  
      leftNode  
      name      

  public org.jruby.ast.NodeType getNodeType();
    descriptor: ()Lorg/jruby/ast/NodeType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.Colon2Node this
         0: .line 54
            getstatic org.jruby.ast.NodeType.COLON2NODE:Lorg/jruby/ast/NodeType;
            areturn
        end local 0 // org.jruby.ast.Colon2Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/Colon2Node;

  public <T> T accept(org.jruby.ast.visitor.NodeVisitor<T>);
    descriptor: (Lorg/jruby/ast/visitor/NodeVisitor;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ast.Colon2Node this
        start local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
         0: .line 63
            aload 1 /* iVisitor */
            aload 0 /* this */
            invokeinterface org.jruby.ast.visitor.NodeVisitor.visitColon2Node:(Lorg/jruby/ast/Colon2Node;)Ljava/lang/Object;
            areturn
        end local 1 // org.jruby.ast.visitor.NodeVisitor iVisitor
        end local 0 // org.jruby.ast.Colon2Node this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/jruby/ast/Colon2Node;
            0    1     1  iVisitor  Lorg/jruby/ast/visitor/NodeVisitor<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lorg/jruby/ast/visitor/NodeVisitor<TT;>;)TT;
    MethodParameters:
          Name  Flags
      iVisitor  

  public org.jruby.ast.Node getLeftNode();
    descriptor: ()Lorg/jruby/ast/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.Colon2Node this
         0: .line 71
            aload 0 /* this */
            getfield org.jruby.ast.Colon2Node.leftNode:Lorg/jruby/ast/Node;
            areturn
        end local 0 // org.jruby.ast.Colon2Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/Colon2Node;

  public java.util.List<org.jruby.ast.Node> childNodes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.Colon2Node this
         0: .line 76
            aload 0 /* this */
            getfield org.jruby.ast.Colon2Node.leftNode:Lorg/jruby/ast/Node;
            invokestatic org.jruby.ast.Node.createList:(Lorg/jruby/ast/Node;)Ljava/util/List;
            areturn
        end local 0 // org.jruby.ast.Colon2Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/Colon2Node;
    Signature: ()Ljava/util/List<Lorg/jruby/ast/Node;>;
}
SourceFile: "Colon2Node.java"