comparison trunk/src/dil/Settings.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 9c47f377ca0b
comparison
equal deleted inserted replaced
720:74cdbb25c7c8 721:8955296dd807
14 string langCode = "en"; 14 string langCode = "en";
15 /// Table of localized compiler messages. 15 /// Table of localized compiler messages.
16 string[] messages; 16 string[] messages;
17 /// Array of import paths to look for modules. 17 /// Array of import paths to look for modules.
18 string[] importPaths; 18 string[] importPaths;
19 /// Array of DDoc macro file paths.
20 string[] ddocFilePaths;
19 string lexerErrorFormat = "{0}({1},{2})L: {3}"; 21 string lexerErrorFormat = "{0}({1},{2})L: {3}";
20 string parserErrorFormat = "{0}({1},{2})P: {3}"; 22 string parserErrorFormat = "{0}({1},{2})P: {3}";
21 string semanticErrorFormat = "{0}({1},{2})S: {3}"; 23 string semanticErrorFormat = "{0}({1},{2})S: {3}";
22 } 24 }