*** empty log message ***

This commit is contained in:
2005-06-05 16:44:05 +00:00
parent 537312c735
commit 689e6e2bf8
5 changed files with 346 additions and 66 deletions

View File

@@ -1,5 +1,5 @@
/*
* $Id: token.h,v 1.3 2005-06-02 16:14:58 bacon Exp $
* $Id: token.h,v 1.4 2005-06-05 16:44:05 bacon Exp $
*/
#ifndef _XP_STX_TOKEN_H_
@@ -9,14 +9,11 @@
enum
{
XP_STX_TOKEN_END = 0,
XP_STX_TOKEN_STRING = 1,
XP_STX_TOKEN_IDENT = 2,
XP_STX_TOKEN_SELF = 3,
XP_STX_TOKEN_SUPER = 4,
XP_STX_TOKEN_NIL = 5,
XP_STX_TOKEN_TRUE = 6,
XP_STX_TOKEN_FALSE = 7
XP_STX_TOKEN_END = 0,
XP_STX_TOKEN_CHARLIT,
XP_STX_TOKEN_STRLIT,
XP_STX_TOKEN_IDENT,
XP_STX_TOKEN_KEYWORD
};
struct xp_stx_token_t