diff --git a/ase/stx/parser.c b/ase/stx/parser.c index 96d96e4f..199829be 100644 --- a/ase/stx/parser.c +++ b/ase/stx/parser.c @@ -1,5 +1,5 @@ /* - * $Id: parser.c,v 1.5 2005-05-24 03:28:31 bacon Exp $ + * $Id: parser.c,v 1.6 2005-05-30 07:38:25 bacon Exp $ */ #include @@ -22,47 +22,4 @@ void xp_stx_parser_close (xp_stx_parser_t* parser) { if (parser->__malloced) xp_stx_free (parser); } -/* -static void __emit_code ( - xp_stx_t* stx, xp_stx_word_t method, int value) -{ -} - -static void __emit_instruction ( - xp_stx_t* stx, xp_stx_word_t method, int high, int low) -{ - if (low >= 16) { - __emit_instruction (stx, method, Extended, high); - __emit_code (low); - } - else __emit_code (high * 16 + low); -} -*/ - -int xp_stx_parser_parse_method (xp_stx_parser_t* parser, const xp_char_t* text) -{ - return 0; -} - - -int xp_stx_filein_raw (xp_stx_t* stx, xp_stx_getc_t getc) -{ -/* - xp_cint_t c; - - getc() - gettoken (); - if (token->type == XP_STX_TOKEN_IDENT) { - ident: - } -*/ - - return 0; -} - -int xp_stx_get_token () -{ -/* getc */ - return 0; -} diff --git a/ase/stx/parser.h b/ase/stx/parser.h index e34c5493..38957711 100644 --- a/ase/stx/parser.h +++ b/ase/stx/parser.h @@ -1,5 +1,5 @@ /* - * $Id: parser.h,v 1.3 2005-05-22 15:03:20 bacon Exp $ + * $Id: parser.h,v 1.4 2005-05-30 07:38:25 bacon Exp $ */ #ifndef _XP_STX_PARSER_H_ @@ -21,9 +21,6 @@ extern "C" { xp_stx_parser_t* xp_stx_parser_open (xp_stx_parser_t* parser); void xp_stx_parser_close (xp_stx_parser_t* parser); -int xp_stx_parser_parse (xp_stx_parser_t* parser, const xp_char_t* text); - -int xp_stx_filein_raw (xp_stx_t* parser, xp_stx_getc_t getc); #ifdef __cplusplus }