comparison lexer/Keyword.d @ 194:08f68d684047

Rename some files. Hopefully we can get a more iterative sema pass, that's a lot easier to "get startet with". Also added support for alias.
author Anders Johnsen <skabet@gmail.com>
date Tue, 29 Jul 2008 13:54:44 +0200
parents 57b0b4464a0b
children
comparison
equal deleted inserted replaced
193:658178183018 194:08f68d684047
45 "typeof" : Tok.Typeof, 45 "typeof" : Tok.Typeof,
46 "sizeof" : Tok.Sizeof, 46 "sizeof" : Tok.Sizeof,
47 "alias" : Tok.Alias, 47 "alias" : Tok.Alias,
48 "this" : Tok.This, 48 "this" : Tok.This,
49 "new" : Tok.New, 49 "new" : Tok.New,
50 "null" : Tok.Null,
50 // "super" : Tok.Super, 51 // "super" : Tok.Super,
51 52
52 // control flow 53 // control flow
53 "if" : Tok.If, 54 "if" : Tok.If,
54 "else" : Tok.Else, 55 "else" : Tok.Else,