aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/tests/test-structural-renderer/tests
Commit message (Collapse)AuthorAgeFilesLines
* feat(core): add generic parameter `C` to `StructuralData` trait魏曹先生2026-07-211-0/+3
| | | | | | | Make `StructuralData` and `StructuralDataSealed` generic over a program collector type to bypass the orphan rule for `group_structural!`. This enables external types to implement `StructuralData<crate::ThisProgram>` without violating coherence.
* feat(core)!: replace RenderResult with buffered output model魏曹先生2026-07-211-2/+3
| | | | | | | | | | Remove `Deref<Target=str>` and `render_text:String` in favor of `render_buffer:Vec<(String, RenderResultMode)>` and an `immediate_output` flag. Add `RenderResultMode` enum, `r_eprint!`/`r_eprintln!` macros, and new buffer manipulation methods (`append_to_buffer`, `eprint`, etc.). Update `Display` to trim output and remove trailing newline. Migrate all callers and tests away from `Deref` usage.
* refactor(general_renderer): rename to structural_renderer魏曹先生2026-06-261-0/+75