comparison dmd/Token.d @ 79:43073c7c7769

updated to 2.035 also implemented a few missing functions still crashes in Import.importAll though
author Trass3r
date Mon, 30 Aug 2010 03:57:51 +0200
parents 5c9b78899f5d
children e28b18c23469
comparison
equal deleted inserted replaced
78:b98fa8a4bf04 79:43073c7c7769
11 struct Token 11 struct Token
12 { 12 {
13 Token* next; 13 Token* next;
14 ubyte* ptr; // pointer to first character of this token within buffer 14 ubyte* ptr; // pointer to first character of this token within buffer
15 TOK value; 15 TOK value;
16 ubyte* blockComment; // doc comment string prior to this token 16 string blockComment; // doc comment string prior to this token
17 ubyte* lineComment; // doc comment for previous token 17 string lineComment; // doc comment for previous token
18 18
19 union 19 union
20 { 20 {
21 // Integers 21 // Integers
22 int int32value; 22 int int32value;