qse/ase/stx/token.h

67 lines
1.3 KiB
C
Raw Normal View History

2005-05-22 10:32:37 +00:00
/*
2007-03-22 11:21:59 +00:00
* $Id: token.h,v 1.19 2007-03-22 11:19:28 bacon Exp $
2005-05-22 10:32:37 +00:00
*/
2007-03-22 11:21:59 +00:00
#ifndef _ASE_STX_TOKEN_H_
#define _ASE_STX_TOKEN_H_
2005-05-22 10:32:37 +00:00
2007-03-22 11:21:59 +00:00
#include <ase/stx/stx.h>
#include <ase/stx/name.h>
2005-05-22 10:32:37 +00:00
2005-06-02 16:14:58 +00:00
enum
{
2007-03-22 11:21:59 +00:00
ASE_STX_TOKEN_END,
ASE_STX_TOKEN_CHARLIT,
ASE_STX_TOKEN_STRLIT,
ASE_STX_TOKEN_SYMLIT,
ASE_STX_TOKEN_NUMLIT,
ASE_STX_TOKEN_IDENT,
ASE_STX_TOKEN_BINARY,
ASE_STX_TOKEN_KEYWORD,
ASE_STX_TOKEN_PRIMITIVE,
ASE_STX_TOKEN_ASSIGN,
ASE_STX_TOKEN_COLON,
ASE_STX_TOKEN_RETURN,
ASE_STX_TOKEN_LBRACKET,
ASE_STX_TOKEN_RBRACKET,
ASE_STX_TOKEN_LPAREN,
ASE_STX_TOKEN_RPAREN,
ASE_STX_TOKEN_APAREN,
ASE_STX_TOKEN_PERIOD,
ASE_STX_TOKEN_SEMICOLON
2005-06-02 16:14:58 +00:00
};
2007-03-22 11:21:59 +00:00
struct ase_stx_token_t
2005-05-22 10:32:37 +00:00
{
int type;
/*
2007-03-22 11:21:59 +00:00
ase_stx_int_t ivalue;
ase_stx_real_t fvalue;
2005-05-22 10:32:37 +00:00
*/
2007-03-22 11:21:59 +00:00
ase_stx_name_t name;
ase_bool_t __dynamic;
2005-05-22 10:32:37 +00:00
};
2007-03-22 11:21:59 +00:00
typedef struct ase_stx_token_t ase_stx_token_t;
2005-05-22 10:32:37 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2007-03-22 11:21:59 +00:00
ase_stx_token_t* ase_stx_token_open (
ase_stx_token_t* token, ase_word_t capacity);
void ase_stx_token_close (ase_stx_token_t* token);
2005-05-22 10:32:37 +00:00
2007-03-22 11:21:59 +00:00
int ase_stx_token_addc (ase_stx_token_t* token, ase_cint_t c);
int ase_stx_token_adds (ase_stx_token_t* token, const ase_char_t* s);
void ase_stx_token_clear (ase_stx_token_t* token);
ase_char_t* ase_stx_token_yield (ase_stx_token_t* token, ase_word_t capacity);
int ase_stx_token_compare_name (ase_stx_token_t* token, const ase_char_t* str);
2005-05-22 10:32:37 +00:00
#ifdef __cplusplus
}
#endif
#endif