From 1d496f5f7f01b20fb34e63d1c85a33d8decd1894 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Sat, 22 Jun 2024 12:23:55 +0100 Subject: add function literals --- com.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 com.h (limited to 'com.h') diff --git a/com.h b/com.h new file mode 100644 index 0000000..f08769e --- /dev/null +++ b/com.h @@ -0,0 +1,18 @@ +#ifndef _com_h +#define _com_h + +typedef struct _compiler Compiler; + +#include "state.h" +#include "chunk.h" + + +struct _compiler { + State *S; + Chunk *ch; +}; +Compiler compiler_new(Compiler *outer, Chunk *ch); + +#define BYTECODE(C) (C->ch->bc) + +#endif -- cgit v1.2.3