## Summary Documented the "init block vs fields-at-top" design discussion as a valuable example of AI-human collaboration in language design. ## Changes ### Paper G (AI Collaboration) - Added field-declaration-design.md documenting the entire discussion flow - Showcased how complex init block proposal evolved to simple "fields at top" rule - Demonstrates AI's tendency toward complexity vs human intuition for simplicity ### Paper H (AI Practical Patterns) - Added Pattern #17: "Gradual Refinement Pattern" (段階的洗練型) - Documents the process: Complex AI proposal → Detailed analysis → Human insight → Convergence - Field declaration design as a typical example ### Paper K (Explosive Incidents) - Added Incident #046: "init block vs fields-at-top incident" - Updated total count to 46 incidents - Shows how a single human comment redirected entire design approach ## Design Decision After analysis, decided that BoxIndex should remain a compiler-internal structure, not a core Box: - Core Boxes: User-instantiable runtime values (String, Integer, Array, Map) - Compiler internals: BoxIndex for name resolution (compile-time only) - Clear separation of concerns between language features and compiler tools ## Philosophy This discussion exemplifies key principles: - The best design needs no explanation - Constraints provide clarity, not limitation - "Everything is Box" doesn't mean "compiler internals are Boxes" - AI tends toward theoretical completeness; humans toward practical simplicity 🐱 Sometimes the simplest answer is right in front of us\!
4.8 KiB
4.8 KiB
using — Imports and Namespaces (Phase 15+)
Status: Accepted (Runner‑side resolution). Selfhost parser accepts using as no‑op and attaches meta.usings for future use.
Policy
- Accept
usinglines at the top of the file to declare module namespaces or file imports. - Resolution is performed by the Rust Runner when
NYASH_ENABLE_USING=1.- Runner strips
usinglines from the source before parsing/execution. - Registers modules into an internal registry for path/namespace hints.
- Runner strips
- Selfhost compiler (Ny→JSON v0) collects using lines and emits
meta.usingswhen present. The bridge currently ignores this meta field.
Namespace Resolution (Runner‑side)
- Goal: keep IR/VM/JIT untouched. All resolution happens in Runner/Registry.
- Default search order (3 stages, deterministic):
- Local/Core Boxes (nyrt)
- Aliases (nyash.toml [imports] /
needs … as …) - Plugins (short name if unique, otherwise qualified
pluginName.BoxName)
- On ambiguity: error with candidates and remediation (qualify or define alias).
- Modes:
- Relaxed (default): short names allowed when unique。
- Strict: plugin短名にprefix必須(env
NYASH_PLUGIN_REQUIRE_PREFIX=1または nyash.toml[plugins] require_prefix=true)。
- Aliases:
- nyash.toml
[imports] HttpClient = "network.HttpClient" - needs sugar:
needs plugin.network.HttpClient as HttpClient(file‑scoped alias)
- nyash.toml
Plugins
- Unified namespace with Boxes. Prefer short names when unique.
- Qualified form:
network.HttpClient - Per‑plugin control (nyash.toml):
prefix,require_prefix,expose_short_names- 現状は設定の読み取りのみ(導線)。挙動への反映は段階的に実施予定。
needs sugar (optional)
- Treated as a synonym to
usingon the Runner side; registers aliases only. - Examples:
needs utils.StringHelper,needs plugin.network.HttpClient as HttpClient,needs plugin.network.*
nyash.toml keys (MVP)
[imports]/[aliases]: short name → fully qualified[plugins.<name>]:path,prefix,require_prefix,expose_short_names
Index and Cache (Runner)
- BoxIndex(グローバル):プラグインBox一覧とaliasesを集約し、Runner起動時(plugins init後)に構築・更新。
aliases: HashMap<String,String>(nyash.toml[aliases]と envNYASH_ALIASES)plugin_boxes: HashSet<String>(読み取り専用)
- 解決キャッシュ:グローバルの小さなキャッシュで同一キーの再解決を回避(キー:
tgt|base|strict|paths)。 - トレース:
NYASH_RESOLVE_TRACE=1で解決手順やキャッシュヒット、未解決候補を出力。
Syntax
- Namespace:
using core.stdorusing core.std as Std - File path:
using "apps/examples/string_p0.nyash" as Strings - Relative path is allowed; absolute paths are discouraged.
Style
- Place all
usinglines at the top of the file, before any code. - One using per line; avoid trailing semicolons. Newline separation is preferred.
- Order: sort alphabetically by target. Group namespaces before file paths.
- Prefer an explicit alias (
as ...) when the target is long. Suggested alias style isPascalCase(e.g.,Std,Json,UI).
Examples
using core.std as Std
using "apps/examples/string_p0.nyash" as Strings
static box Main {
main(args) {
local console = new ConsoleBox()
console.println("hello")
return 0
}
}
Qualified/Plugins/Aliases examples
# nyash.toml
[plugins.network]
path = "plugins/network.so"
prefix = "network"
require_prefix = false
[imports]
HttpClient = "network.HttpClient"
# code
needs plugin.network.HttpClient as HttpClient
static box Main {
main(args) {
let a = new HttpClient() # alias
let b = new network.HttpClient() # qualified
}
}
Runner Configuration
- Enable using pre‑processing:
NYASH_ENABLE_USING=1 - CLI from-the-top registration:
--using "ns as Alias"or--using '"apps/foo.nyash" as Foo'(repeatable) - Strict mode (plugin prefix required):
NYASH_PLUGIN_REQUIRE_PREFIX=1またはnyash.tomlの[plugins] require_prefix=true - Aliases from env:
NYASH_ALIASES="Foo=apps/foo/main.nyash,Bar=lib/bar.nyash" - Additional search paths:
NYASH_USING_PATH="apps:lib:." - Selfhost pipeline keeps child stdout quiet and extracts JSON only:
NYASH_JSON_ONLY=1(set by Runner automatically for child) - Selfhost emits
meta.usingsautomatically when present; no additional flags required.
Notes
- Phase 15 keeps resolution in the Runner to minimize parser complexity. Future phases may leverage
meta.usingsfor compiler decisions. - Unknown fields in the top‑level JSON (like
meta) are ignored by the current bridge. - 未解決時(非strict)は実行を継続し、
NYASH_RESOLVE_TRACE=1で候補を提示。strict時はエラーで候補を表示。