- plugin_loader_v2: store per-Box resolve() from TypeBox FFI; add resolve_method_id() and use in invoke_instance_method
- plugin_loader_unified: resolve_method() falls back to loader’s resolve when TOML lacks method entries
- nyash.toml: register JsonDocBox/JsonNodeBox methods (birth/parse/root/error; kind/get/size/at/str/int/bool)
- plugins/nyash-json-plugin:
* serde/yyjson provider switch via env NYASH_JSON_PROVIDER (default serde)
* vendored yyjson (c/yyjson) + shim; parse/root/get/size/at/str/int/bool implemented for yyjson
* TLV void returns aligned to tag=9
- PyVM: add minimal JsonDocBox/JsonNodeBox shims in ops_box.py (for dev path)
- tests/smokes: add jsonbox_{parse_ok,parse_err,nested,collect_prints}; wire two into min-gate CI
- tools: collect_prints_mixed now uses JSON-based app
- MiniVmPrints: move BinaryOp and fallback heuristics behind a dev toggle (default OFF)
- CURRENT_TASK.md: updated with provider policy and fallback stance
31 lines
676 B
Bash
31 lines
676 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
ROOT_DIR=$(cd "$(dirname "$0")/../../../.." && pwd)
|
|
|
|
echo "[smoke] jsonbox nested ..." >&2
|
|
pushd "$ROOT_DIR" >/dev/null
|
|
|
|
cargo build --release -q --manifest-path plugins/nyash-json-plugin/Cargo.toml
|
|
|
|
export NYASH_VM_USE_PY=1
|
|
export NYASH_LOAD_NY_PLUGINS=1
|
|
|
|
BIN=./target/release/nyash
|
|
APP=apps/tests/jsonbox_nested.nyash
|
|
|
|
out=$("$BIN" --backend vm "$APP")
|
|
expected=$'B\n7\n3\n2'
|
|
|
|
if [[ "$out" != "$expected" ]]; then
|
|
echo "[smoke] FAIL: unexpected output" >&2
|
|
echo "--- got ---" >&2
|
|
printf '%s\n' "$out" >&2
|
|
echo "--- exp ---" >&2
|
|
printf '%s\n' "$expected" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "[smoke] OK: jsonbox nested" >&2
|
|
popd >/dev/null
|
|
|