Package org.jruby.ast

Class OrNode

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

public class OrNode extends Node implements BinaryOperatorNode
represents '||' (or) statements
  • Field Details

    • firstNode

      private final Node firstNode
    • secondNode

      private final Node secondNode
  • Constructor Details

    • OrNode

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