Cosmo/src/cparse.h

11 lines
283 B
C
Raw Normal View History

2020-10-28 05:16:30 +00:00
#ifndef CPARSE_H
#define CPARSE_H
#include "cosmo.h"
#include "clex.h"
2020-12-19 19:32:43 +00:00
// compiles source into CChunk, if NULL is returned, a syntaxical error has occurred and pushed onto the stack
2020-12-09 18:23:16 +00:00
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