class Atomy::Grammar::AST::Unquote
Public Instance Methods
==(other)
click to toggle source
Calls superclass method
# File lib/atomy/node/equality.rb, line 38 def ==(other) super || other.is_a?(self.class) && @node == other.node end
construct(gen)
click to toggle source
# File lib/atomy/node/constructable.rb, line 64 def construct(gen) push_node(gen, :Unquote) @node.construct(gen) gen.send(:new, 1) end
each_child() { |:node, node| ... }
click to toggle source
# File lib/atomy/node/meta.rb, line 95 def each_child yield :node, @node end
through() { |node)| ... }
click to toggle source
# File lib/atomy/node/meta.rb, line 99 def through self.class.new(yield @node) end
to_s()
click to toggle source
# File lib/atomy/node/pretty.rb, line 35 def to_s "~#@node" end