class Nokogiri::CSS::Parser

def []=(string, value)

Set the css selector in +string+ in the cache to +value+
def []=(string, value)
  return value unless cache_on?
  @mutex.synchronize { @cache[string] = value }
end