/**
  * Get the absolute path of the language specific compilation folder for this item to be compiled.
  * 
  * @param core_kernel_file_File $destinationDirectory
  * @param string $compilationLanguage A language tag.
  * @return string The absolute path to the language specific compilation folder for this item to be compiled.
  */
 protected function getLanguageCompilationPath($destinationDirectory, $compilationLanguage)
 {
     return $destinationDirectory->getPath() . DIRECTORY_SEPARATOR . $compilationLanguage . DIRECTORY_SEPARATOR;
 }