diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 12:12:02 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 12:12:02 -0400 |
| commit | 55479cbf9e4a8f36afe41d84df687f05fc7661f0 (patch) | |
| tree | 0bb00769f319716b75f5e0a3b0e73934de89aa88 /src/parse/context.c | |
| parent | c3bcb504a07823ec8a096d34d0f4fe8dc5b27196 (diff) | |
Initial work to pass metadata for code
Diffstat (limited to 'src/parse/context.c')
| -rw-r--r-- | src/parse/context.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/parse/context.c b/src/parse/context.c new file mode 100644 index 00000000..689fa1a4 --- /dev/null +++ b/src/parse/context.c @@ -0,0 +1,8 @@ +// A context parameter that gets passed around during parsing. + +#include "../stdlib/memory.h" +#include "../stdlib/pointers.h" +#include "../stdlib/tables.h" +#include "../stdlib/types.h" + +TypeInfo_t *parse_comments_info = Table$info(Pointer$info("@", &Memory$info), Pointer$info("@", &Memory$info)); |
