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