diff options
| author | Rose Hogenson <rhogenson@posteo.net> | 2023-02-11 21:31:04 -0800 |
|---|---|---|
| committer | Rose Hogenson <rhogenson@posteo.net> | 2023-02-11 21:31:04 -0800 |
| commit | 5989629a7951e544ad4656672025a99ecd08c7c9 (patch) | |
| tree | 89e2ca80f73d8dcf16a9fadcea41b2e141bdf4eb /bytecode/value_slice.h | |
| parent | Slightly simplify bytecode interpreter. (diff) | |
| download | sml-5989629a7951e544ad4656672025a99ecd08c7c9.tar.zst | |
Change how slices work.
I'm switching to a more macro-heavy solution. Hopefully it
proves robust.
Diffstat (limited to 'bytecode/value_slice.h')
| -rw-r--r-- | bytecode/value_slice.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bytecode/value_slice.h b/bytecode/value_slice.h new file mode 100644 index 0000000..09b2873 --- /dev/null +++ b/bytecode/value_slice.h @@ -0,0 +1,9 @@ +#ifndef _VALUE_SLICE_H_ +#define _VALUE_SLICE_H_ + +#include "slice.h" +#include "value.h" + +DEFINE_SLICE(value) + +#endif |
