w6c,ww: re-emit ... union-spread marker in .wwi producer (M4 E3, #95)
The N_TTAGGED serializer emitted each variant via wwi_type but never re-emitted the `...` prefix for TK_ELLIPSIS spread variants, so an exported `(...inner | str)` round-tripped through .wwi as `(inner | str)`. The consumer's checker then could not flatten inner's members into the alias and variadic-assignability rejected bare members — under separate compilation this broke fmt/log/getopt. Re-emit `...` before the variant type, both stages; the producer stays purely syntactic (flatten/dedup remain the consumer's type-store job, per ref/hare/hare/unparse/type.ha:290-300). Gate: test/wcc/989_wwispread_sep.c — table-driven (2-arm + 3-arm spreads) x both stages, asserts the marker survives the .wwi, the consumer binds bare members under --sep (exit 0), and cs==ww .wwi byte-identity.
This commit is contained in:
9
Makefile
9
Makefile
@@ -537,7 +537,7 @@ TESTS = $(BIN)/test_smoke $(BIN)/test_lex $(BIN)/test_parse $(BIN)/test_check \
|
||||
$(BIN)/test_w6c_ww $(BIN)/test_ww_ww $(BIN)/test_self_rebuild \
|
||||
$(BIN)/test_dyn_ww $(BIN)/test_selfcheck \
|
||||
$(BIN)/test_attest_record $(BIN)/test_attest_drop \
|
||||
$(BIN)/test_declns_sep \
|
||||
$(BIN)/test_declns_sep $(BIN)/test_wwispread_sep \
|
||||
$(BIN)/test_fmt_run $(BIN)/test_log_run $(BIN)/test_fnmatch_run \
|
||||
$(BIN)/test_shlex_run $(BIN)/test_getenv_run $(BIN)/test_dirs_run \
|
||||
$(BIN)/test_dirs_toolong_run \
|
||||
@@ -2967,6 +2967,13 @@ $(BIN)/test_declns_sep: test/wcc/989_declns_sep.c $(BIN)/ww $(BIN)/ww_ww \
|
||||
$(BIN)/w6l $(BIN)/w6l_ww $(LIB)/libwwrt.a | $(BIN)
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
|
||||
# #95 — .wwi producer must preserve the `...` union-spread marker; dir-package
|
||||
# `ww build --sep` + run, both driver stages, 2-arm + 3-arm shapes + cs==ww.
|
||||
$(BIN)/test_wwispread_sep: test/wcc/989_wwispread_sep.c $(BIN)/ww $(BIN)/ww_ww \
|
||||
$(BIN)/w6c $(BIN)/w6c_ww $(BIN)/w6a $(BIN)/w6a_ww \
|
||||
$(BIN)/w6l $(BIN)/w6l_ww $(LIB)/libwwrt.a | $(BIN)
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
|
||||
$(BIN)/test_fmt_run: test/wcc/970_fmt_run.c $(BIN)/ww $(BIN)/w6c \
|
||||
$(BIN)/w6a $(BIN)/w6l $(LIB)/libwwrt.a | $(BIN)
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
|
||||
Reference in New Issue
Block a user