Object
# File lib/flay.rb, line 299 def all_structural_subhashes hashes = [] self.deep_each do |node| hashes << node.structural_hash end hashes end
REFACTOR: move to sexp.rb
# File lib/flay.rb, line 308 def deep_each(&block) self.each_sexp do |sexp| block[sexp] sexp.deep_each(&block) end end
Generated with the Darkfish Rdoc Generator 2.