lparser.h 379 B

1234567891011121314151617181920
  1. /*
  2. ** $Id: lparser.h,v 1.2 1997/12/22 20:57:18 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 (char *s);
  13. void luaY_syntaxerror (char *s, char *token);
  14. #endif