mruby-compiler: improve codegen.c comments to reflect current state

Remove migration-stage "Phase" and "Group" references from comments,
replacing them with descriptions of actual code organization.

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-10-01 07:53:59 +09:00
parent 209c81e464
commit 149dd03619
+3 -3
View File
@@ -3777,7 +3777,7 @@ codegen_array(codegen_scope *s, node *varnode, int val)
}
}
/* Phase 3 Variable Node Codegen Functions */
/* Control flow and definition node codegen functions */
static mrb_bool
callargs_empty(node *n)
{
@@ -5177,7 +5177,7 @@ codegen_dvar(codegen_scope *s, node *varnode, int val)
}
}
// Group 11: Operators and Expressions
/* Unary operator codegen functions */
static void
codegen_not(codegen_scope *s, node *varnode, int val)
{
@@ -5484,7 +5484,7 @@ is_empty_stmts(node *stmt_node)
return FALSE;
}
// Group 16: Declarations and Definitions
/* Declaration codegen functions */
static void
codegen_alias(codegen_scope *s, const node *varnode, int val)