Cosmo/src/cparse.h
2020-12-19 13:32:43 -06:00

10 lines
282 B
C

#ifndef CPARSE_H
#define CPARSE_H
#include "cosmo.h"
#include "clex.h"
// 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);
#endif