Complete C app port fixes: ArrayBox.length() patterns and final validation

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-15 07:36:00 +00:00
parent aae81ec4d5
commit e4bb033853
4 changed files with 185 additions and 5 deletions

View File

@ -245,6 +245,7 @@ impl MirBuilder {
LiteralValue::Float(f) => ConstValue::Float(f),
LiteralValue::String(s) => ConstValue::String(s),
LiteralValue::Bool(b) => ConstValue::Bool(b),
LiteralValue::Null => ConstValue::Null,
LiteralValue::Void => ConstValue::Void,
};