# HG changeset patch # User Aziz K?ksal # Date 1198086492 -3600 # Node ID d7050f2a4814f69afc3b3581815d6f78c1153809 # Parent c9579ea872283d045ff3e62078f6e62c4e181809 Fixed table 'tokToString'. diff -r c9579ea87228 -r d7050f2a4814 trunk/src/dil/TokensEnum.d --- 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"