class Ikra::AST::Node
Attributes
parent[RW]
Public Instance Methods
==(other)
click to toggle source
# File lib/ast/nodes.rb, line 10 def ==(other) return self.class == other.class end
accept(visitor)
click to toggle source
# File lib/ast/visitor.rb, line 6 def accept(visitor) return visitor.visit_node(self) end
eql?(other)
click to toggle source
# File lib/ast/nodes.rb, line 6 def eql?(other) return self == other end
hash()
click to toggle source
# File lib/ast/nodes.rb, line 14 def hash return 1231 end
to_s()
click to toggle source
# File lib/ast/printer.rb, line 4 def to_s return "[Node]" end