lparser.h 335 B

1234567891011121314151617181920
  1. /*
  2. ** $Id: $
  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, char *chunkname);
  12. void luaY_error (char *s);
  13. void luaY_syntaxerror (char *s, char *token);
  14. #endif