view trunk/src/dil/lexer/IdentsEnum.d @ 798:c24be8d4f6ab

Added documentation comments.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 01 Mar 2008 02:53:06 +0100
parents 3b34f6a95a27
children
line wrap: on
line source

/++
  Author: Aziz Köksal
  License: GPL3
+/
module dil.lexer.IdentsEnum;

import dil.lexer.IdentsGenerator;

version(DDoc)
  enum IDK : ushort; /// Enumeration of predefined identifier kinds.
else
mixin(
  // Enumerates predefined identifiers.
  "enum IDK : ushort {"
    "Null,"
    ~ generateIDMembers ~
  "}"
);