Built-in types are keywords
This commit is contained in:
parent
f4b001f623
commit
9e670cca65
|
@ -37,30 +37,20 @@ html { background-color: #fff; color: #222; }
|
||||||
|
|
||||||
foreach (Token t; tokens)
|
foreach (Token t; tokens)
|
||||||
{
|
{
|
||||||
switch (t.type)
|
if (t.type > TokenType.TYPES_BEGIN && t.type < TokenType.TYPES_END)
|
||||||
{
|
|
||||||
case TokenType.KEYWORDS_BEGIN: .. case TokenType.KEYWORDS_END:
|
|
||||||
writeSpan("kwrd", t.value);
|
|
||||||
break;
|
|
||||||
case TokenType.TYPES_BEGIN: .. case TokenType.TYPES_END:
|
|
||||||
writeSpan("type", t.value);
|
writeSpan("type", t.value);
|
||||||
break;
|
else if (t.type > TokenType.KEYWORDS_BEGIN && t.type < TokenType.KEYWORDS_END)
|
||||||
case TokenType.Comment:
|
writeSpan("kwrd", t.value);
|
||||||
|
else if (t.type == TokenType.Comment)
|
||||||
writeSpan("com", t.value);
|
writeSpan("com", t.value);
|
||||||
break;
|
else if (t.type > TokenType.STRINGS_BEGIN && t.type < TokenType.STRINGS_END)
|
||||||
case TokenType.STRINGS_BEGIN: .. case TokenType.STRINGS_END:
|
|
||||||
writeSpan("str", t.value);
|
writeSpan("str", t.value);
|
||||||
break;
|
else if (t.type > TokenType.NUMBERS_BEGIN && t.type < TokenType.NUMBERS_END)
|
||||||
case TokenType.NUMBERS_BEGIN: .. case TokenType.NUMBERS_END:
|
|
||||||
writeSpan("num", t.value);
|
writeSpan("num", t.value);
|
||||||
break;
|
else if (t.type > TokenType.OPERATORS_BEGIN && t.type < TokenType.OPERATORS_END)
|
||||||
case TokenType.OPERATORS_BEGIN: .. case TokenType.OPERATORS_END:
|
|
||||||
writeSpan("op", t.value);
|
writeSpan("op", t.value);
|
||||||
break;
|
else
|
||||||
default:
|
|
||||||
stdout.write(t.value.replace("<", "<"));
|
stdout.write(t.value.replace("<", "<"));
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
stdout.writeln("</pre>\n</body></html>");
|
stdout.writeln("</pre>\n</body></html>");
|
||||||
}
|
}
|
||||||
|
|
|
@ -539,42 +539,39 @@ enum TokenType: uint
|
||||||
XorEquals, /// ^=
|
XorEquals, /// ^=
|
||||||
OPERATORS_END, ///
|
OPERATORS_END, ///
|
||||||
|
|
||||||
// Types
|
|
||||||
TYPES_BEGIN, ///
|
|
||||||
Bool, /// bool
|
|
||||||
Byte, /// byte
|
|
||||||
Cdouble, /// cdouble
|
|
||||||
Cent, /// cent
|
|
||||||
Cfloat, /// cfloat
|
|
||||||
Char, /// char
|
|
||||||
Creal, /// creal
|
|
||||||
Dchar, /// dchar
|
|
||||||
Double, /// double
|
|
||||||
DString, /// dstring
|
|
||||||
Float, /// float
|
|
||||||
Function, /// function
|
|
||||||
Idouble, /// idouble
|
|
||||||
Ifloat, /// ifloat
|
|
||||||
Int, /// int
|
|
||||||
Ireal, /// ireal
|
|
||||||
Long, /// long
|
|
||||||
Real, /// real
|
|
||||||
Short, /// short
|
|
||||||
String, /// string
|
|
||||||
Ubyte, /// ubyte
|
|
||||||
Ucent, /// ucent
|
|
||||||
Uint, /// uint
|
|
||||||
Ulong, /// ulong
|
|
||||||
Ushort, /// ushort
|
|
||||||
Void, /// void
|
|
||||||
Wchar, /// wchar
|
|
||||||
WString, /// wstring
|
|
||||||
TYPES_END, ///
|
|
||||||
|
|
||||||
Template, /// template
|
// Keywords
|
||||||
|
|
||||||
// Keywords
|
|
||||||
KEYWORDS_BEGIN, ///
|
KEYWORDS_BEGIN, ///
|
||||||
|
TYPES_BEGIN, ///
|
||||||
|
Bool, /// bool
|
||||||
|
Byte, /// byte
|
||||||
|
Cdouble, /// cdouble
|
||||||
|
Cent, /// cent
|
||||||
|
Cfloat, /// cfloat
|
||||||
|
Char, /// char
|
||||||
|
Creal, /// creal
|
||||||
|
Dchar, /// dchar
|
||||||
|
Double, /// double
|
||||||
|
DString, /// dstring
|
||||||
|
Float, /// float
|
||||||
|
Function, /// function
|
||||||
|
Idouble, /// idouble
|
||||||
|
Ifloat, /// ifloat
|
||||||
|
Int, /// int
|
||||||
|
Ireal, /// ireal
|
||||||
|
Long, /// long
|
||||||
|
Real, /// real
|
||||||
|
Short, /// short
|
||||||
|
String, /// string
|
||||||
|
Ubyte, /// ubyte
|
||||||
|
Ucent, /// ucent
|
||||||
|
Uint, /// uint
|
||||||
|
Ulong, /// ulong
|
||||||
|
Ushort, /// ushort
|
||||||
|
Void, /// void
|
||||||
|
Wchar, /// wchar
|
||||||
|
WString, /// wstring
|
||||||
|
TYPES_END, ///
|
||||||
ATTRIBUTES_BEGIN, ///
|
ATTRIBUTES_BEGIN, ///
|
||||||
Align, /// align
|
Align, /// align
|
||||||
Deprecated, /// deprecated
|
Deprecated, /// deprecated
|
||||||
|
@ -643,6 +640,7 @@ enum TokenType: uint
|
||||||
Struct, /// struct
|
Struct, /// struct
|
||||||
Super, /// super
|
Super, /// super
|
||||||
Switch, /// switch
|
Switch, /// switch
|
||||||
|
Template, /// template
|
||||||
This, /// this
|
This, /// this
|
||||||
Throw, /// throw
|
Throw, /// throw
|
||||||
True, /// true
|
True, /// true
|
||||||
|
|
Loading…
Reference in New Issue