Cosmo/src/cparse.h

12 lines
286 B
C
Raw Normal View History

2020-10-28 05:16:30 +00:00
#ifndef CPARSE_H
#define CPARSE_H
#include "clex.h"
2023-02-09 18:32:48 +00:00
#include "cosmo.h"
2020-10-28 05:16:30 +00:00
2023-02-09 18:32:48 +00:00
// compiles source into CChunk, if NULL is returned, a syntaxical error has occurred and pushed onto
// the stack
CObjFunction *cosmoP_compileString(CState *state, const char *source, const char *module);
2020-10-28 05:16:30 +00:00
2021-01-02 05:06:24 +00:00
#endif