diff trunk/src/dil/TokensEnum.d @ 544:d7050f2a4814

Fixed table 'tokToString'.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Wed, 19 Dec 2007 18:48:12 +0100
parents a3f66502ea64
children 3bc7801c207e
line wrap: on
line diff
--- a/trunk/src/dil/TokensEnum.d	Wed Dec 19 18:47:24 2007 +0100
+++ b/trunk/src/dil/TokensEnum.d	Wed Dec 19 18:48:12 2007 +0100
@@ -74,9 +74,8 @@
   MulAssign, Mul,
   ModAssign, Mod,
   XorAssign, Xor,
-  CatAssign, Catenate,
+  CatAssign,
   Tilde,
-  Identity, NotIdentity,
 
   Colon,
   Semicolon,
@@ -182,9 +181,8 @@
   "*=", "*",
   "%=", "%",
   "^=", "^",
-  "~=", "~",
+  "~=",
   "~",
-  "is", "!is",
 
   ":",
   ";",
@@ -193,19 +191,27 @@
   "$",
 
   "abstract","alias","align","asm","assert","auto","body",
-  "bool","break","byte","case","cast","catch","cdouble",
-  "cent","cfloat","char","class","const","continue","creal",
-  "dchar","debug","default","delegate","delete","deprecated","do",
-  "double","else","enum","export","extern","false","final",
-  "finally","float","for","foreach","foreach_reverse","function","goto",
-  "idouble","if","ifloat","import","in","inout","int",
-  "interface","invariant","ireal","is","lazy","long","macro",
+  "break","case","cast","catch",
+  "class","const","continue",
+  "debug","default","delegate","delete","deprecated","do",
+  "else","enum","export","extern","false","final",
+  "finally","for","foreach","foreach_reverse","function","goto",
+  "if","import","in","inout",
+  "interface","invariant","is","lazy","macro",
   "mixin","module","new","null","out","override","package",
-  "pragma","private","protected","public","real","ref","return",
-  "scope","short","static","struct","super","switch","synchronized",
+  "pragma","private","protected","public","ref","return",
+  "scope","static","struct","super","switch","synchronized",
   "template","this","throw","__traits","true","try","typedef","typeid",
-  "typeof","ubyte","ucent","uint","ulong","union","unittest",
-  "ushort","version","void","volatile","wchar","while","with",
+  "typeof","union","unittest",
+  "version","volatile","while","with",
+  // Integral types.
+  "char",   "wchar",   "dchar", "bool",
+  "byte",   "ubyte",   "short", "ushort",
+  "int",    "uint",    "long",  "ulong",
+  "cent",   "ucent",
+  "float",  "double",  "real",
+  "ifloat", "idouble", "ireal",
+  "cfloat", "cdouble", "creal", "void",
 
   "HEAD",
   "EOF"