aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/common.h
blob: b41797babe7bf40e4f78ec249f4eb7968a6ae1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef clox_common_h
#define clox_common_h

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#define NAN_BOXING
/* #define DEBUG_PRINT_CODE */
/* #define DEBUG_TRACE_EXECUTION */

/* #define DEBUG_STRESS_GC */
/* #define DEBUG_LOG_GC */

#define UINT8_COUNT (UINT8_MAX + 1)

#endif