# File rexml/xpath_parser.rb, line 242
  def FilterExpr path, nodeset
			path, results = PrimaryExpr(path, nodeset)
			#puts "Path is now '#{path}', results are #{puta results}" if DEBUG
			path, results = Predicate(path, results) if path[0] == ?[
			[path, results]
		end