Merged changes from @blackwhale. Added and fixed unit tests.

This commit is contained in:
Hackerpilot 2013-02-18 02:45:57 +00:00
commit 89d18755b8
1 changed files with 1904 additions and 1904 deletions

View File

@ -3344,7 +3344,9 @@ unittest
LexerConfig config;
auto tokens = byToken(source, config);
Token a = tokens.moveFront();
assert (a.type == TokenType.import_);
Token b = tokens.moveFront();
assert (b.type == TokenType.identifier);
assert (a != b);
assert (a != "foo");
assert (a < b);
@ -3368,6 +3370,4 @@ unittest
}
//void main(string[] args)
//{
//}
//void main(string[] args){}