Skip to content

Commit

Permalink
Minor refactoring in compiler.c
Browse files Browse the repository at this point in the history
  • Loading branch information
bamless committed May 18, 2024
1 parent 6ab6c16 commit e6cb216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ struct Compiler {
};

static void initCompiler(Compiler* c, JStarVM* vm, Compiler* prev, ObjModule* module,
const char* file, FuncType type, ext_vector(JStarIdentifier) * globals,
ext_vector(FwdRef) * fwdRefs, const JStarStmt* ast) {
const char* file, FuncType type, ext_vector(JStarIdentifier)* globals,
ext_vector(FwdRef)* fwdRefs, const JStarStmt* ast) {
vm->currCompiler = c;
c->vm = vm;
c->module = module;
Expand Down

0 comments on commit e6cb216

Please sign in to comment.