Commit Graph

6 Commits

Author SHA1 Message Date
a3d5bacc55 Phase 30.1 & 73: Stage-3 features env and JoinIR flag cleanup 2025-11-30 14:30:28 +09:00
f4ae144559 fix(using): StringUtils using resolution - dual root cause fix
🎯 Phase 21.7++ - using StringUtils as StringUtils 完全動作化!

## Root Cause #1: TOML Parse Error (lang/src/llvm_ir/hako_module.toml)

**Problem:**
```toml
line 18: aot_prep = "boxes/aot_prep.hako"     # scalar
line 19: aot_prep.passes.strlen = "..."       # table - CONFLICT!
```
→ TOML parse error prevented ALL aliases from loading
→ populate_from_toml() returned Err, aliases.len() = 0

**Fix:**
Commented out conflicting line 18:
```toml
# aot_prep = "boxes/aot_prep.hako"  # Commented out: conflicts with aot_prep.passes.* below
aot_prep.passes.strlen = "boxes/aot_prep/passes/strlen.hako"
```

**Result:**
 populate_from_toml() succeeds
 4 aliases loaded including StringUtils → string_utils

## Root Cause #2: Missing Arity Suffix (src/backend/mir_interpreter/handlers/calls/global.rs)

**Problem:**
- MIR functions stored as "BoxName.method/arity"
- VM looked up "StringUtils.starts_with" (no arity)
- Function table had "StringUtils.starts_with/2" (with /2)
→ Lookup failed with "Unknown: StringUtils.starts_with"

**Fix:**
Auto-append arity from args.len() if missing:
```rust
let mut canonical = crate::mir::naming::normalize_static_global_name(func_name);

if !canonical.contains('/') {
    canonical = format!("{}/{}", canonical, args.len());
}
```

**Result:**
 "StringUtils.starts_with" + args.len()=2 → "StringUtils.starts_with/2"
 VM function lookup succeeds

## Debug Infrastructure

**Added comprehensive debug logging:**
1. src/runner/pipeline.rs:36-55 - NYASH_DEBUG_USING=1 for alias loading
2. src/backend/mir_interpreter/handlers/calls/global.rs:17-42 - NYASH_DEBUG_FUNCTION_LOOKUP=1 for VM lookup

## Test Coverage

**src/tests/json_lint_stringutils_min_vm.rs:**
- Rewrote to test arity auto-completion (not using resolution)
- Inlined StringUtils implementation to avoid pipeline dependency
- Tests that VM can call "StringUtils.starts_with" without arity suffix
-  Test passes

**CLI Verification:**
```bash
NYASH_PARSER_STAGE3=1 HAKO_PARSER_STAGE3=1 NYASH_DISABLE_PLUGINS=1 \
  ./target/release/hakorune apps/tests/json_lint_stringutils_min.hako
# Output: OK
# RC: 0
```

## Impact

-  using StringUtils as StringUtils fully functional
-  All using aliases load successfully
-  VM can find functions with/without arity suffix
-  No breaking changes to existing code
-  Debug logging for future troubleshooting

## Files Modified

- lang/src/llvm_ir/hako_module.toml (TOML fix)
- src/runner/pipeline.rs (debug logging)
- src/backend/mir_interpreter/handlers/calls/global.rs (arity fix + logging)
- src/tests/json_lint_stringutils_min_vm.rs (rewrite + enable)
- src/tests/mod.rs (register test)

Co-authored-by: Task Agent <task@anthropic.com>
Co-authored-by: Claude Code <claude@anthropic.com>
2025-11-22 01:21:38 +09:00
77d4fd72b3 phase: 20.49 COMPLETE; 20.50 Flow+String minimal reps; 20.51 selfhost v0/v1 minimal (Option A/B); hv1-inline binop/unop/copy; docs + run_all + CURRENT_TASK -> 21.0 2025-11-06 15:41:52 +09:00
47bd2d2ee2 Gate‑C(Core) OOB strict fail‑fast; String VM handler normalization; JSON lint Stage‑B root fixes via scanner field boxing and BinOp operand slotify; docs + smokes update 2025-11-01 18:45:26 +09:00
34be7d2d79 vm/router: minimal special-method extension (equals/1); toString mapping kept
mir: add TypeCertainty to Callee::Method (diagnostic only); plumb through builder/JSON/printer; backends ignore behaviorally

using: confirm unified prelude resolver entry for all runner modes

docs: update Callee architecture with certainty; update call-instructions; CURRENT_TASK note

tests: quick 40/40 PASS; integration (LLVM) 17/17 PASS
2025-09-28 01:33:58 +09:00
cb236b7f5a json(vm): fix birth dispatch; unify constructor naming (Box.birth/N); JsonNode factories return JsonNodeInstance; quick: enable heavy JSON with probe; builder: NYASH_BUILDER_DEBUG_LIMIT guard; json_query_min(core) harness; docs/tasks updated 2025-09-27 08:45:25 +09:00