public class org.jruby.ast.OpAsgnConstDeclNode extends org.jruby.ast.Node implements org.jruby.ast.BinaryOperatorNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ast.OpAsgnConstDeclNode
  super_class: org.jruby.ast.Node
{
  private org.jruby.ast.Node lhs;
    descriptor: Lorg/jruby/ast/Node;
    flags: (0x0002) ACC_PRIVATE

  private org.jruby.RubySymbol operator;
    descriptor: Lorg/jruby/RubySymbol;
    flags: (0x0002) ACC_PRIVATE

  private org.jruby.ast.Node rhs;
    descriptor: Lorg/jruby/ast/Node;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.jruby.lexer.yacc.ISourcePosition, org.jruby.ast.Node, org.jruby.RubySymbol, org.jruby.ast.Node);
    descriptor: (Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/ast/Node;Lorg/jruby/RubySymbol;Lorg/jruby/ast/Node;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // org.jruby.ast.OpAsgnConstDeclNode this
        start local 1 // org.jruby.lexer.yacc.ISourcePosition position
        start local 2 // org.jruby.ast.Node lhs
        start local 3 // org.jruby.RubySymbol operator
        start local 4 // org.jruby.ast.Node rhs
         0: .line 20
            aload 0 /* this */
            aload 1 /* position */
            aload 2 /* lhs */
            invokevirtual org.jruby.ast.Node.containsVariableAssignment:()Z
            ifne 1
            aload 4 /* rhs */
            invokevirtual org.jruby.ast.Node.containsVariableAssignment:()Z
            ifne 1
            iconst_0
            goto 2
      StackMap locals: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol org.jruby.ast.Node
      StackMap stack: uninitialized-this org.jruby.lexer.yacc.ISourcePosition
         1: iconst_1
      StackMap locals: uninitialized-this org.jruby.lexer.yacc.ISourcePosition org.jruby.ast.Node org.jruby.RubySymbol org.jruby.ast.Node
      StackMap stack: uninitialized-this org.jruby.lexer.yacc.ISourcePosition int
         2: invokespecial org.jruby.ast.Node.<init>:(Lorg/jruby/lexer/yacc/ISourcePosition;Z)V
         3: .line 22
            aload 0 /* this */
            aload 2 /* lhs */
            putfield org.jruby.ast.OpAsgnConstDeclNode.lhs:Lorg/jruby/ast/Node;
         4: .line 23
            aload 0 /* this */
            aload 3 /* operator */
            putfield org.jruby.ast.OpAsgnConstDeclNode.operator:Lorg/jruby/RubySymbol;
         5: .line 24
            aload 0 /* this */
            aload 4 /* rhs */
            putfield org.jruby.ast.OpAsgnConstDeclNode.rhs:Lorg/jruby/ast/Node;
         6: .line 25
            return
        end local 4 // org.jruby.ast.Node rhs
        end local 3 // org.jruby.RubySymbol operator
        end local 2 // org.jruby.ast.Node lhs
        end local 1 // org.jruby.lexer.yacc.ISourcePosition position
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/jruby/ast/OpAsgnConstDeclNode;
            0    7     1  position  Lorg/jruby/lexer/yacc/ISourcePosition;
            0    7     2       lhs  Lorg/jruby/ast/Node;
            0    7     3  operator  Lorg/jruby/RubySymbol;
            0    7     4       rhs  Lorg/jruby/ast/Node;
    MethodParameters:
          Name  Flags
      position  
      lhs       
      operator  
      rhs       

  public boolean isOr();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.ast.OpAsgnConstDeclNode this
         0: .line 28
            getstatic org.jruby.util.CommonByteLists.OR_OR:Lorg/jruby/util/ByteList;
            aload 0 /* this */
            getfield org.jruby.ast.OpAsgnConstDeclNode.operator:Lorg/jruby/RubySymbol;
            invokevirtual org.jruby.RubySymbol.getBytes:()Lorg/jruby/util/ByteList;
            invokevirtual org.jruby.util.ByteList.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/OpAsgnConstDeclNode;

  public boolean isAnd();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jruby.ast.OpAsgnConstDeclNode this
         0: .line 32
            getstatic org.jruby.util.CommonByteLists.AMPERSAND_AMPERSAND:Lorg/jruby/util/ByteList;
            aload 0 /* this */
            getfield org.jruby.ast.OpAsgnConstDeclNode.operator:Lorg/jruby/RubySymbol;
            invokevirtual org.jruby.RubySymbol.getBytes:()Lorg/jruby/util/ByteList;
            invokevirtual org.jruby.util.ByteList.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/OpAsgnConstDeclNode;

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

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

  public java.lang.String getOperator();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.OpAsgnConstDeclNode this
         0: .line 47
            aload 0 /* this */
            getfield org.jruby.ast.OpAsgnConstDeclNode.operator:Lorg/jruby/RubySymbol;
            invokevirtual org.jruby.RubySymbol.asJavaString:()Ljava/lang/String;
            areturn
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/OpAsgnConstDeclNode;

  public org.jruby.util.ByteList getByteOperator();
    descriptor: ()Lorg/jruby/util/ByteList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.OpAsgnConstDeclNode this
         0: .line 51
            aload 0 /* this */
            getfield org.jruby.ast.OpAsgnConstDeclNode.operator:Lorg/jruby/RubySymbol;
            invokevirtual org.jruby.RubySymbol.getBytes:()Lorg/jruby/util/ByteList;
            areturn
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/OpAsgnConstDeclNode;

  public org.jruby.RubySymbol getSymbolOperator();
    descriptor: ()Lorg/jruby/RubySymbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ast.OpAsgnConstDeclNode this
         0: .line 55
            aload 0 /* this */
            getfield org.jruby.ast.OpAsgnConstDeclNode.operator:Lorg/jruby/RubySymbol;
            areturn
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/OpAsgnConstDeclNode;

  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.OpAsgnConstDeclNode this
        start local 1 // org.jruby.ast.visitor.NodeVisitor visitor
         0: .line 60
            aload 1 /* visitor */
            aload 0 /* this */
            invokeinterface org.jruby.ast.visitor.NodeVisitor.visitOpAsgnConstDeclNode:(Lorg/jruby/ast/OpAsgnConstDeclNode;)Ljava/lang/Object;
            areturn
        end local 1 // org.jruby.ast.visitor.NodeVisitor visitor
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/ast/OpAsgnConstDeclNode;
            0    1     1  visitor  Lorg/jruby/ast/visitor/NodeVisitor<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lorg/jruby/ast/visitor/NodeVisitor<TT;>;)TT;
    MethodParameters:
         Name  Flags
      visitor  

  public java.util.List<org.jruby.ast.Node> childNodes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.jruby.ast.OpAsgnConstDeclNode this
         0: .line 65
            aload 0 /* this */
            getfield org.jruby.ast.OpAsgnConstDeclNode.lhs:Lorg/jruby/ast/Node;
            new org.jruby.ast.LiteralNode
            dup
            aload 0 /* this */
            invokevirtual org.jruby.ast.OpAsgnConstDeclNode.getPosition:()Lorg/jruby/lexer/yacc/ISourcePosition;
            aload 0 /* this */
            getfield org.jruby.ast.OpAsgnConstDeclNode.operator:Lorg/jruby/RubySymbol;
            invokespecial org.jruby.ast.LiteralNode.<init>:(Lorg/jruby/lexer/yacc/ISourcePosition;Lorg/jruby/RubySymbol;)V
            aload 0 /* this */
            getfield org.jruby.ast.OpAsgnConstDeclNode.rhs:Lorg/jruby/ast/Node;
            invokestatic org.jruby.ast.OpAsgnConstDeclNode.createList:(Lorg/jruby/ast/Node;Lorg/jruby/ast/Node;Lorg/jruby/ast/Node;)Ljava/util/List;
            areturn
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/OpAsgnConstDeclNode;
    Signature: ()Ljava/util/List<Lorg/jruby/ast/Node;>;

  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.OpAsgnConstDeclNode this
         0: .line 70
            getstatic org.jruby.ast.NodeType.OPASGNCONSTDECLNODE:Lorg/jruby/ast/NodeType;
            areturn
        end local 0 // org.jruby.ast.OpAsgnConstDeclNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ast/OpAsgnConstDeclNode;
}
SourceFile: "OpAsgnConstDeclNode.java"