module SyntaxTree

def self.search_file(filepath, query, &block)

node in the tree that matches the pattern to the given block.
Searches through the given file using the given pattern and yields each
def self.search_file(filepath, query, &block)
  search(read(filepath), query, &block)
end