class RKelly::Nodes::PostfixNode
Attributes
operand[R]
Public Class Methods
new(operand, operator)
click to toggle source
Calls superclass method
RKelly::Nodes::Node::new
# File lib/rkelly/nodes/postfix_node.rb, line 5 def initialize(operand, operator) super(operator) @operand = operand end