Files
Noja/src/runtime/o_func.h
T
2022-03-12 23:17:44 +01:00

5 lines
197 B
C

#ifndef NOJAFUNC_H
#define NOJAFUNC_H
#include "runtime.h"
Object *Object_FromNojaFunction(Runtime *runtime, Executable *exe, int index, int argc, Object *closure, Heap *heap, Error *error);
#endif