meta: replace bluelib with fx
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
#include "var-map.h"
|
||||
|
||||
#include <blue/core/queue.h>
|
||||
#include <fx/core/queue.h>
|
||||
#include <ivy/lang/ast.h>
|
||||
#include <ivy/lang/lex.h>
|
||||
#include <mie/ctx.h>
|
||||
@@ -124,7 +124,7 @@ struct code_generator {
|
||||
};
|
||||
|
||||
struct code_generator_state {
|
||||
b_queue_entry s_entry;
|
||||
fx_queue_entry s_entry;
|
||||
uintptr_t s_argv;
|
||||
void *s_argp;
|
||||
const struct code_generator *s_gen;
|
||||
@@ -135,9 +135,9 @@ struct code_generator_state {
|
||||
};
|
||||
|
||||
struct ivy_codegen {
|
||||
b_queue c_values;
|
||||
b_queue c_state;
|
||||
b_queue c_scope;
|
||||
fx_queue c_values;
|
||||
fx_queue c_state;
|
||||
fx_queue c_scope;
|
||||
struct mie_builder *c_builder;
|
||||
struct mie_ctx *c_ctx;
|
||||
struct mie_module *c_module;
|
||||
|
||||
Reference in New Issue
Block a user