_Context
Declaration
_Context :: struct {
alloc_fn: _AllocFn;
free_fn: _FreeFn;
print_log_fn: _PrintLogFn;
}
Description
Default implicit context type. Implicit context is compiler internal global variable containing basic context for whole assembly. This variable is mutable and can be modified by user code.
Members
alloc_fnPointer to memory allocator function.free_fnPointer to memory free function.print_log_fnPointer to print log function.
Declared in: basic.bl