mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
refactor(dynamic): add multi-method support to RouteShape, update framework bindings, and improve test coverage
This commit is contained in:
parent
4bcdec3a1b
commit
ca075a7141
55 changed files with 524 additions and 215 deletions
|
|
@ -183,7 +183,9 @@ mod e2e_json_parse_depth {
|
|||
Lang::Go => "go",
|
||||
Lang::Rust => "rust",
|
||||
Lang::Java => "java",
|
||||
_ => unreachable!("JSON_PARSE depth e2e covers JS / Python / Ruby / PHP / Go / Rust / Java only"),
|
||||
_ => unreachable!(
|
||||
"JSON_PARSE depth e2e covers JS / Python / Ruby / PHP / Go / Rust / Java only"
|
||||
),
|
||||
})
|
||||
.join(fixture);
|
||||
let tmp = TempDir::new().expect("create tempdir");
|
||||
|
|
@ -230,7 +232,9 @@ mod e2e_json_parse_depth {
|
|||
Lang::Go => "go",
|
||||
Lang::Rust => "cargo",
|
||||
Lang::Java => "javac",
|
||||
_ => unreachable!("JSON_PARSE depth e2e covers JS / Python / Ruby / PHP / Go / Rust / Java only"),
|
||||
_ => unreachable!(
|
||||
"JSON_PARSE depth e2e covers JS / Python / Ruby / PHP / Go / Rust / Java only"
|
||||
),
|
||||
};
|
||||
if !command_available(required) {
|
||||
eprintln!("SKIP {lang:?} {fixture}: missing toolchain {required}");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue