1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-21 10:47:40 +00:00

Major refactor. Move files around, merge compiler into

core and other changes, work on inlining many c functions.
This commit is contained in:
Calvin Rose
2018-07-03 23:07:35 -04:00
parent 17685bd789
commit a018f9f54a
44 changed files with 5721 additions and 2053 deletions

View File

@@ -23,13 +23,7 @@
#ifndef DST_STATE_H_defined
#define DST_STATE_H_defined
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include <dst/dstconfig.h>
#include <dst/dsttypes.h>
/* The VM state. Rather than a struct that is passed
* around, the vm state is global for simplicity. If
@@ -66,8 +60,4 @@ extern DST_THREAD_LOCAL Dst *dst_vm_roots;
extern DST_THREAD_LOCAL uint32_t dst_vm_root_count;
extern DST_THREAD_LOCAL uint32_t dst_vm_root_capacity;
#ifdef __cplusplus
}
#endif
#endif /* DST_STATE_H_defined */