class Atomy::Grammar::AST::QuasiQuote
Public Instance Methods
==(other)
click to toggle source
Calls superclass method
# File lib/atomy/node/equality.rb, line 32 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 56 def construct(gen) push_node(gen, :QuasiQuote) @node.construct(gen) gen.send(:new, 1) end
each_child() { |:node, node| ... }
click to toggle source
# File lib/atomy/node/meta.rb, line 85 def each_child yield :node, @node end
through() { |node)| ... }
click to toggle source
# File lib/atomy/node/meta.rb, line 89 def through self.class.new(yield @node) end
to_s()
click to toggle source
# File lib/atomy/node/pretty.rb, line 29 def to_s "`#@node" end