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:
nyash-codex
2025-11-06 15:41:52 +09:00
parent 2dc370223d
commit 77d4fd72b3
1658 changed files with 6288 additions and 2612 deletions

View File

@ -48,10 +48,10 @@ run_case() {
}
# Core plugin demos
run_case py_math_sqrt_demo examples/py_math_sqrt_demo.nyash
run_case integer_plugin_demo examples/integer_plugin_demo.nyash
run_case console_demo examples/console_demo.nyash
run_case math_time_demo examples/math_time_demo.nyash
run_case py_math_sqrt_demo examples/py_math_sqrt_demo.hako
run_case integer_plugin_demo examples/integer_plugin_demo.hako
run_case console_demo examples/console_demo.hako
run_case math_time_demo examples/math_time_demo.hako
echo "[smoke] all green" >&2
@ -59,8 +59,8 @@ echo "[smoke] all green" >&2
if [[ "${NYASH_SMOKE_STRICT_PLUGINS:-}" == "1" ]]; then
echo "[smoke] second pass with NYASH_DISABLE_BUILTINS=1" >&2
NYASH_DISABLE_BUILTINS=1 env -u NYASH_OPT_DIAG_FORBID_LEGACY \
"$BIN" --backend vm "$ROOT_DIR/examples/console_demo.nyash" >/dev/null
"$BIN" --backend vm "$ROOT_DIR/examples/console_demo.hako" >/dev/null
NYASH_DISABLE_BUILTINS=1 env -u NYASH_OPT_DIAG_FORBID_LEGACY \
"$BIN" --backend vm "$ROOT_DIR/examples/math_time_demo.nyash" >/dev/null
"$BIN" --backend vm "$ROOT_DIR/examples/math_time_demo.hako" >/dev/null
echo "[smoke] all green (builtins disabled)" >&2
fi