module SyntaxTree

def self.parse_file(filepath)

Parses the given file and returns the syntax tree.
def self.parse_file(filepath)
  parse(read(filepath))
end