Package org.jruby.ast

Class AndNode

java.lang.Object
org.jruby.ast.Node
org.jruby.ast.AndNode
All Implemented Interfaces:
BinaryOperatorNode

public class AndNode extends Node implements BinaryOperatorNode
Represents a && (and) operator.
  • Field Details

    • firstNode

      private final Node firstNode
    • secondNode

      private final Node secondNode
  • Constructor Details

    • AndNode

      public AndNode(int line, Node firstNode, Node secondNode)
  • Method Details