lparser.h 374 B

1234567891011121314151617181920
  1. /*
  2. ** $Id: lparser.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
  3. ** Syntax analizer and code generator
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lparser_h
  7. #define lparser_h
  8. #include "lobject.h"
  9. #include "lzio.h"
  10. void luaY_codedebugline (int line);
  11. TProtoFunc *luaY_parser (ZIO *z);
  12. void luaY_error (char *s);
  13. void luaY_syntaxerror (char *s, char *token);
  14. #endif