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
This commit is contained in:
@ -69,7 +69,7 @@ s.get() # ← 空文字列を返す
|
||||
|
||||
### 最小再現コード
|
||||
```bash
|
||||
# test_stringbox.nyash
|
||||
# test_stringbox.hako
|
||||
local s = new StringBox("Hello World")
|
||||
print("StringBox created")
|
||||
print(s) # 期待: "Hello World", 実際: ""
|
||||
@ -83,16 +83,16 @@ print("Length: " + len) # 期待: 11, 実際: 0
|
||||
./tools/plugin-tester/target/release/plugin-tester check --config nyash.toml
|
||||
|
||||
# テスト実行
|
||||
NYASH_ENTRY_ALLOW_TOPLEVEL_MAIN=1 ./target/release/nyash test_stringbox.nyash
|
||||
NYASH_ENTRY_ALLOW_TOPLEVEL_MAIN=1 ./target/release/nyash test_stringbox.hako
|
||||
```
|
||||
|
||||
### デバッグ情報収集
|
||||
```bash
|
||||
# 詳細ログ
|
||||
NYASH_CLI_VERBOSE=1 ./target/release/nyash test_stringbox.nyash
|
||||
NYASH_CLI_VERBOSE=1 ./target/release/nyash test_stringbox.hako
|
||||
|
||||
# MIRダンプ確認
|
||||
./target/release/nyash --dump-mir test_stringbox.nyash
|
||||
./target/release/nyash --dump-mir test_stringbox.hako
|
||||
|
||||
# 具体的な問題箇所の確認
|
||||
rg "M_BIRTH" plugins/nyash-string-plugin/src/lib.rs # 該当箇所を特定
|
||||
|
||||
Reference in New Issue
Block a user