lparser.h 397 B

1234567891011121314151617181920
  1. /*
  2. ** $Id: lparser.h,v 1.3 1999/02/25 19:13:56 roberto Exp roberto $
  3. ** LL(1) Parser and code generator for Lua
  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 (const char *s);
  13. void luaY_syntaxerror (const char *s, const char *token);
  14. #endif