Files
hakorune/apps/lib/scopebox_inject.hako

13 lines
436 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// scopebox_inject.hako — JSON v0 前処理(恒等版)
// 目的: If.then/else, Loop.body を ScopeBox 相当に包む前処理の導線を提供。
// 現段階は恒等identity。将来段階で安全な包み込みを実装する。
static box ScopeBoxInject {
// Apply ScopeBox-style wrapping on JSON v0 text. Returns transformed JSON text.
// MVP: identity (no-op)
apply(json_text) {
return json_text
}
}