aboutsummaryrefslogtreecommitdiff
path: root/examples/example-exitcode/src
Commit message (Collapse)AuthorAgeFilesLines
* chore!: simplify ExitCodeSetup to non-generic unit struct魏曹先生28 hours1-1/+1
|
* refactor!: replace pack! macros with derive-based pipeline types魏曹先生2 days1-5/+8
| | | | | | | | | Remove the `pack!`, `pack_err!`, `pack_structural!`, and `pack_err_structural!` macros, replacing all pipeline type definitions with `#[derive(Grouped)]` and `#[derive(Grouped, Wrap)]` attributes. This changes the generated struct shape from named-field structs with an `inner` field to tuple structs accessed via `.0`, and removes the auto-generated `name` and `info` fields from error types.
* refactor!: remove Node type and simplify dispatcher macro syntax魏曹先生2 days1-1/+1
| | | | | | | The `dispatcher!` macro no longer requires a `CMD*` dispatcher type argument; the dispatcher struct is now generated internally as `__Dispatcher{Pascal}`. The `Node` type, `node!` macro, and `Dispatcher::node()` / `clone_dispatcher()` methods are removed.
* refactor!: remove dynamic dispatcher registration API魏曹先生2 days1-1/+0
| | | | | | | Dispatchers are now always registered at compile time, removing the `with_dispatcher` / `with_dispatchers` methods and the `PathfinderConfig` API. The `dispatch_tree` feature now only controls the matching strategy (trie vs linear list).
* refactor(examples): migrate renderers to return RenderResult and add魏曹先生2026-07-111-6/+14
| | | | | | | | | std::io::Write import Replace r_println!/r_print! macro usage across all example renderers with explicit RenderResult construction using std::io::Write, enabling more flexible output handling and reducing reliance on macro-side effects.
* Add help command with exit code 2 for exitcode example魏曹先生2026-06-221-1/+13
|
* Rename `ExitCode` to `ResExitCode` and `REPL` to `ResREPL`魏曹先生2026-06-061-4/+4
|
* Enhance code quality across the entire codebaseWeicao-CatilGrass2026-05-311-0/+2
|
* Rework examples and add entry macro for testingWeicao-CatilGrass2026-05-231-0/+62