class RKelly::Nodes::PropertyNode

Attributes

name[R]

Public Class Methods

new(name, value) click to toggle source
Calls superclass method RKelly::Nodes::Node.new
# File lib/rkelly/nodes/property_node.rb, line 5
def initialize(name, value)
  super(value)
  @name = name
end