view trunk/src/config.d @ 721:8955296dd807

Added ddoc_files option to config.d
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 01 Feb 2008 16:40:35 +0100
parents f203c5248d0b
children f4b9680c0e16
line wrap: on
line source

// Relative paths are resolved from the directory of dil's executable.

// Path to the language file.
var langfile = "lang_en.d";
// An array of import paths to look for modules.
var import_paths = []; // E.g.: ["src/", "import/"]
// DDoc macro file paths.
var ddoc_files = []; // E.g.: ["src/mymacros.ddoc", "othermacros.ddoc"]
/*
  Customizing error messages.
  0: file path to the source text.
  1: line number.
  2: column number.
  3: error message.
*/
var lexer_error = "{0}({1},{2})L: {3}";
var parser_error = "{0}({1},{2})P: {3}";
var semantic_error = "{0}({1},{2})S: {3}";