2024-11-28 22:05:37 +00:00
|
|
|
#include "ctx.h"
|
|
|
|
|
#include "node.h"
|
|
|
|
|
|
|
|
|
|
struct ast_node_type string_node_ops = {
|
2024-11-29 12:06:06 +00:00
|
|
|
.n_state_size = sizeof(struct parser_state),
|
|
|
|
|
.n_node_size = sizeof(struct ivy_ast_string_node),
|
2024-11-28 22:05:37 +00:00
|
|
|
};
|