public function SetOption($option, $value) {
   switch ($option) {
     case 'import_dirs':$this->SetImportDirs($value);
       return;
     case 'cache_dir':if (is_string($value)) {
         Less_Cache::SetCacheDir($value);
         Less_Cache::CheckCacheDir();
       }return;
   }Less_Parser::$options[$option] = $value;
 }