diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-22 12:23:55 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-22 12:23:55 +0100 |
commit | 1d496f5f7f01b20fb34e63d1c85a33d8decd1894 (patch) | |
tree | da55156c23b474fa56b012cbb645b244adf42402 /com.h | |
parent | ba0eb2042cefce45efa5c1ad294f05d0122815ee (diff) |
add function literals
Diffstat (limited to 'com.h')
-rw-r--r-- | com.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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 |