docs: add instance-dispatch & birth invariants; smokes probe policy; archive CURRENT_TASK and replace with concise plan; impl VM stringify(Void) safety; tighten heavy probes; enable rewrite default ON

This commit is contained in:
nyash-codex
2025-09-27 08:56:43 +09:00
parent cb236b7f5a
commit 8ea95c9d76
9 changed files with 2533 additions and 2434 deletions

View File

@ -134,8 +134,8 @@ impl MirBuilder {
Some(ref s) if s == "0" || s == "false" || s == "off" => false,
Some(ref s) if s == "1" || s == "true" || s == "on" => true,
_ => {
// Default: ON for dev/ci, OFF for prod
!crate::config::env::using_is_prod()
// Default: ON (prod/dev/ci) unless明示OFF。再発防止のため常時関数化を優先。
true
}
}
};