view trunk/src/config.d @ 520:f203c5248d0b

Added 'compile' command. Fixes in config.d: changed 'auto' to 'var'; fixed format argument indices. dil.Lexer and dil.Parser add their errors to infoMan. Fix in enum TOK: Cent belongs to sublist of integral types.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 15 Dec 2007 22:25:18 +0100
parents 6160ab7b1816
children 8955296dd807
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 = [];
/*
  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}";