diff trunk/src/Lexer.d @ 21:c785c122e4e6

- Added code for parsing Colon, Semicolon, Question, Comma and Dollar.
author aziz
date Sat, 23 Jun 2007 22:43:02 +0000
parents d6adfbd7c513
children b05fff8e2ce4
line wrap: on
line diff
--- a/trunk/src/Lexer.d	Sat Jun 23 22:31:02 2007 +0000
+++ b/trunk/src/Lexer.d	Sat Jun 23 22:43:02 2007 +0000
@@ -278,6 +278,22 @@
         goto Lcommon;
       case '}':
         t.type = TOK.RBrace;
+        goto Lcommon;
+      case ':':
+        t.type = TOK.Colon;
+        goto Lcommon;
+      case ';':
+        t.type = TOK.Semicolon;
+        goto Lcommon;
+      case '?':
+        t.type = TOK.Question;
+        goto Lcommon;
+      case ',':
+        t.type = TOK.Comma;
+        goto Lcommon;
+      case '$':
+        t.type = TOK.Dollar;
+        goto Lcommon;
       Lcommon:
         ++p;
         t.end = p;