Three schema fields move bare → canonical (bare for same-module,
<module>.<Class> for cross-module): InstanceDef.class,
Constraint.class, SuperclassRef.class. Symmetric to ct.1's
Type::Con.name rule. ClassDef.name stays bare.
validate_canonical_type_names gains three field-walks via new
check_class_ref helper + two sibling diagnostics
BareCrossModuleClassRef / BadCrossModuleClassRef.
check_class_name_fields narrowed to ClassDef.name-only.
Workspace-internal class-name keys all qualified:
class_def_module, class_by_name, registry entries.0,
ClassMethodEntry.class_name, class_superclasses, mono's
class_index, Origin::Class.class_name. New qualify_class_ref
helper at workspace.rs scope plus sibling
qualify_class_ref_in_check in ailang-check.
Two new positive on-disk fixtures (mq1_xmod_constraint_class{,_dep})
exercise the qualified Constraint.class shape.
Recon claim that all existing fixtures' class-refs are intra-module
was empirically wrong — 10 fixtures required minimal canonical-form
migration. Duplicate-instance test architecturally restructured:
post-mq.1 orphan-freedom makes two-modules-on-same-(class,type)
structurally impossible; new test_22b1_dup_same_module fixture
lands both instances in the class's module.
Plan defects fixed inline: Origin::Class.class_name single
construction site (plan recon off-by-one); build_class_index in
mono.rs needed qualifying; build_module_globals needed Def::Instance
carve-out; check_fn declared-constraint matching needed inline
canonical-form lifting; NoInstance Float-aware message arm needed
prelude.Eq/prelude.Ord match; coherence type-leg needed qualified-
head split-and-lookup. Tasks 3-6 ran as one coherent fix.
7/7 tasks, 520 tests green. bench/compile_check.py + cross_lang.py
exit 0; bench/check.py exit 1 (4 improvements-beyond-tolerance,
audit-ratifiable, not a regression).
MethodNameCollision + dispatch path unchanged; iters mq.2 + mq.3
land them.
9.0 KiB
iter mq.1 — Canonical-form extension for class-ref fields + workspace internal qualification
Date: 2026-05-13
Started from: 1a5f8289b7
Status: DONE
Tasks completed: 7 of 7
Summary
mq.1 lands the canonical-form rule for the three class-reference
schema fields (InstanceDef.class, Constraint.class,
SuperclassRef.class) — bare for same-module, <module>.<Class>
for cross-module — symmetric to ct.1's Type::Con.name rule.
ClassDef.name stays bare (defining site, like TypeDef.name).
ct.1's validate_canonical_type_names validator gains a sibling
walk for class refs via the new check_class_ref helper, with
two new sibling diagnostics BareCrossModuleClassRef and
BadCrossModuleClassRef. Workspace-internal class-name keys
(class_def_module, class_by_name, registry entries.0,
ClassMethodEntry.class_name, class_superclasses, mono's
class_index, Origin::Class.class_name) all carry the qualified
form post-mq.1; the on-disk schema value is the canonical form (bare
or qualified) that qualify_class_ref lifts to the workspace key
at every lookup boundary. MethodNameCollision and the dispatch
path are unchanged in this iter (iter 2 + 3 land them).
Per-task notes
- iter mq.1.1: two new diagnostic variants
BareCrossModuleClassRef/BadCrossModuleClassRefsibling to the type-ref variants; two Diagnostic-shape Display arms inail/main.rsmirroring the existing arm. 2 RED unit tests, both GREEN. - iter mq.1.2: doc-comments on the four class-reference fields
in
ast.rs(ClassDef.namestays bare with cross-reference;SuperclassRef.class/InstanceDef.class/Constraint.classdocument canonical form). Zero semantic effect. - iter mq.1.3:
check_class_refhelper plus three per-def walks insidevalidate_canonical_type_names;check_class_name_fieldsnarrowed toClassDef.nameonly; four in-test pin tests inverted (qualified is now accepted); on-disktest_ct1_qualified_class_rejectedfixture-test repurposed (now expectsOrphanInstance— the natural post-mq.1 rejection mode for the same shape); positive on-disk fixture pairmq1_xmod_constraint_class{,_dep}shipped plus the corresponding pin test. 4 new bare-xmod tests + 1 positive qualified test, all GREEN. - iter mq.1.4:
qualify_class_refhelper at module scope;build_registryPass-1 re-keyed (qualified); Pass-2 lookups usequalify_class_refto liftinst.classto the registry-key shape; superclass walk threadscurrent_class_moduleto qualify bareSuperclassRef.class;Origin::Class.class_namequalified (one construction site, not two as the plan claimed); type-leg of coherence check now also handles qualified head names symmetrically (split-and-lookup). - iter mq.1.5:
ClassMethodEntry.class_nameinsert qualifies inbuild_module_globals;class_superclasseskey + value both qualified; mono'sbuild_class_indexkeyed qualified (plan said "no code change needed in mono.rs consumers" — that statement was wrong, the build-side needed the matching qualification). - iter mq.1.6: test assertions updated for the new qualified shape —
the two
MethodNameCollisionpin tests,typeclass_22b2.rs:42(class_method_class("show")nowSome("...Show")),typeclass_22b3.rs:151(MonoTarget.classqualified). The other lines plan flagged (217/232/295/301/341/353) are local-construction tests that never round-trip through the workspace — left as-is. - iter mq.1.7: full
cargo test --workspace520 passed / 0 failed;examples/prelude.ail.jsonzero diff (confirms spec assumption 17: intra-prelude refs stay bare);bench/compile_check.pyexit 0,bench/cross_lang.pyexit 0;bench/check.pyexit 1 due to 4 improvements-beyond-tolerance (audit-ratifiable per convention, not a regression). Roundtrip on the new fixture:ail check examples/mq1_xmod_constraint_class.ail.json→ "ok (16 symbols across 3 modules)", exit 0.
Concerns
- Boss-note recon claim was empirically wrong. The boss-note
said "every existing
examples/test_22b*.ail.jsonclass-ref field is intra-module under the canonical-form rule, so existing fixtures carry zero diff". Five test_22b* fixtures actually carried bare cross-module class refs and required migration:test_22b1_orphan_third.ail.json(bareShowfrom imported classmod),test_22b1_dup_a.ail.json+test_22b1_dup_b.ail.json(the duplicate-instance pair structurally relied on the pre-mq.1 bare cross-module shape), andtest_22b2_unbound_constraint_var.ail.json(constraint references a class that doesn't exist anywhere → fired BareCrossModuleClassRef before reaching UnboundConstraintTypeVar). Six non-test_22b fixtures also needed migration (eq_ord_polymorphic,eq_ord_user_adt,cmp_max_smoke,ctt2_collision_lib,ctt2_collision_main). All migrations are minimal and aligned with the canonical-form rule; no proactive "fixture cleanup" added. - Duplicate-instance test restructured by structural necessity.
Pre-mq.1 the test relied on two coherent instances on the same
(class, type)declared from different modules; post-mq.1, the orphan-freedom invariant prevents this shape (any second instance in a module that owns neither the class nor the type firesOrphanInstancefirst). The newtest_22b1_dup_same_module.ail.jsonfixture lands both instances in the same module — the only post-mq.1 way to land two on the same canonical key. The old dup_a/dup_b/entry fixtures stay as supporting modules (referenced by hash.rs's canonical-form hash pin) but no longer participate in the duplicate test. This is arguably a strengthening of the architecture: duplicate instances are now structurally impossible across coherent modules. - Plan's "no code change needed" claims in Task 4 Step 8 and Task 5
Step 5 were wrong. Task 4 Step 8 said
Origin::Class.class_namequalified at "both sites" but there's only one construction site (the plan's recon was off-by-one). Task 5 Step 5 said mono'sclass_index.get(class)lookups would just work post-rekey, butbuild_class_indexitself was bare-keyed. Both fixed inline. - Several adjacent fixes were necessary that the plan didn't anticipate:
(a)
build_module_globalsrejectedinst.classcontaining.— added aDef::Instancecarve-out so qualified class refs survive. (b)check_fn's declared-constraint matching compared barec.classto qualified residualr.class→ added an inline lift viaqualify_class_ref_in_check. (c)NoInstanceFloat-aware message arm matched on bare"Eq" / "Ord"— updated to"prelude.Eq" / "prelude.Ord". (d) Coherence check's type-leg lookup couldn't resolve qualified head names — extended with a split-and-lookup fallback. None of these widened the contract; each is a one-line bridge keeping the post-mq.1 qualified shape consistent across the pipeline. - Tasks 3-6 ran as one coherent fix. The plan structured them as sequential tasks, but Task 3 alone left several existing tests red (registry still bare-keyed, residual still bare). Walking the plan literally and expecting "green after Task 3" per the plan's Step 9 was impossible; the four tasks form one consistent rekey.
Known debt
- The
test_22b1_dup_a/test_22b1_dup_b/test_22b1_dup_entryfixtures are now orphan from the duplicate-instance test (which usestest_22b1_dup_same_moduleinstead). They're still referenced byhash.rs:293for the canonical-form hash pin. A cleanup pass could either retire them entirely (and replace the hash pin with the new fixture) or keep them as historical reference. Deferred — not load-bearing. qualify_class_ref_in_checkinailang-check/src/lib.rsis a one-line duplicate ofworkspace::qualify_class_ref. The alternative is exposingqualify_class_refaspub(crate)or re-exporting; the duplication was the minimum-edit path. A consolidation tidy could land in iter 2.
Files touched
Code:
- crates/ail/src/main.rs
- crates/ail/tests/ct1_check_cli.rs
- crates/ail/tests/typeclass_22b2.rs
- crates/ail/tests/typeclass_22b3.rs
- crates/ailang-check/src/lib.rs
- crates/ailang-check/src/mono.rs
- crates/ailang-check/tests/env_construction_pin.rs
- crates/ailang-core/src/ast.rs
- crates/ailang-core/src/hash.rs
- crates/ailang-core/src/workspace.rs
- crates/ailang-core/tests/ctt2_registry_rekey.rs
Fixtures (existing, migrated):
- examples/cmp_max_smoke.ail.json
- examples/ctt2_collision_lib.ail.json
- examples/ctt2_collision_main.ail.json
- examples/eq_ord_polymorphic.ail.json
- examples/eq_ord_user_adt.ail.json
- examples/test_22b1_dup_a.ail.json
- examples/test_22b1_dup_b.ail.json
- examples/test_22b1_dup_entry.ail.json
- examples/test_22b1_orphan_third.ail.json
- examples/test_22b2_unbound_constraint_var.ail.json
Fixtures (new):
- examples/mq1_xmod_constraint_class.ail.json
- examples/mq1_xmod_constraint_class_dep.ail.json
- examples/test_22b1_dup_classmod.ail.json
- examples/test_22b1_dup_same_module.ail.json
Stats
bench/orchestrator-stats/2026-05-13-iter-mq.1.json