# File lib/street_address.rb, line 651
      def parse(location)
        if Regexp.new(corner_regexp, Regexp::IGNORECASE).match(location)
          parse_intersection(location);
        else 
          parse_address(location);
        end
      end