class Bade::AST::KeyValueNode

Attributes

name[RW]

@return [String]

value[RW]

@return [Any]

Public Instance Methods

==(other) click to toggle source

@param other [KeyValueNode]

Calls superclass method Bade::AST::Node#==
# File lib/bade/ast/node/key_value_node.rb, line 16
def ==(other)
  super && name == other.name && value == other.value
end