diff trunk/src/dil/lexer/IdentsEnum.d @ 602:c2e35c83c394

Moved dil.IdentsEnum to dil.lexer.IdentsEnum.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 06 Jan 2008 00:58:27 +0100
parents trunk/src/dil/IdentsEnum.d@4e14cd1b24da
children fc351756cc84
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/trunk/src/dil/lexer/IdentsEnum.d	Sun Jan 06 00:58:27 2008 +0100
@@ -0,0 +1,14 @@
+/++
+  Author: Aziz Köksal
+  License: GPL3
++/
+module dil.lexer.IdentsEnum;
+
+import dil.IdentsGenerator;
+
+mixin(
+  "enum ID : ushort {"
+    "Null,"
+    ~ generateIDMembers ~
+  "}"
+);