25 CTASSERTF(node != NULL,
"node cannot be NULL");
CT_NODISCARD CT_SCAN_API scan_t * scan_builtin(const char *language, arena_t *arena)
create a builtin scanner
CT_NODISCARD CT_PUREFN CT_SCAN_API bool scan_is_builtin(const scan_t *scan)
check if a scanner is the builtin scanner
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
STA_DECL node_t * node_builtin(const char *name, arena_t *arena)
get the builtin node node used for drivers that declare builtin symbols
STA_DECL const scan_t * node_get_scan(const node_t *node)
get the associated source file of a node
STA_DECL bool node_is_builtin(const node_t *node)
check if a node is the builtin node
STA_DECL where_t node_get_location(const node_t *node)
get the location of a node inside its source file
const where_t kNowhere
nowhere in a source file
STA_DECL node_t * node_new(const scan_t *scan, where_t where)
create a new node on the heap
STA_DECL node_t node_make(const scan_t *scan, where_t where)
create a new node on the stack
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
#define CTASSERT(expr)
assert a condition, prints the condition as a message
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
STA_DECL void node_init(node_t *node, const scan_t *scan, where_t where)
a position in a source file
const scan_t * scan
the scanner that this node is in
where_t where
the location of this node
arena_t * nodes
arena to use when allocating nodes
a location inside a scanner locations are inclusive and 0-based