Rocket/core/codegen/tests/ui-fail-stable/catch.stderr

74 lines
2.3 KiB
Plaintext
Raw Normal View History

error: expected `fn`
2023-08-11 19:14:34 +00:00
= help: `#[catch]` can only be used on functions
--> tests/ui-fail-stable/catch.rs:6:1
|
6 | struct Catcher(String);
| ^^^^^^
error: expected `fn`
2023-08-11 19:14:34 +00:00
= help: `#[catch]` can only be used on functions
--> tests/ui-fail-stable/catch.rs:9:7
|
9 | const CATCH: &str = "Catcher";
| ^^^^^
Revamp codegen, fixing inconscpicuous bugs. This commit completely revamps the way that codegen handles route URI "parameters". The changes are largely internal. In summary, codegen code is better organized, better written, and less subject to error. There are three breaking changes: * `path` is now `uri` in `route` attribute: `#[route(GET, path = "..")]` becomes `#[route(GET, uri = "..")]`. * the order of execution for path and query guards relative to each-other is now unspecified * URI normalization now normalizes the query part as well. Several error messages were improved. A couple of bugs were fixed: * Prior to this commit, Rocket would optimistically try to parse every segment of a URI as an ident, in case one was needed in the future. A bug in rustc results in codegen "panicking" if the segment couldn't _lex_ as an ident. This panic didn't manifest until far after expansion, unfortunately. This wasn't a problem before as we only allowed ident-like segments (ASCII), but now that we allow any UTF-8, the bug surfaced. This was fixed by never attempting to parse non-idents as idents. * Prior to this commit, it was impossible to generate typed URIs for paths that ignored path parameters via the recently added syntax `<_>`: the macro would panic. This was fixed by, well, handling these ignored parameters. Some minor additions: * Added `RawStr::find()`, expanding its `Pattern`-based API. * Added an internal mechanism to dynamically determine if a `UriPart` is `Path` or `Query`.
2021-03-02 12:01:33 +00:00
error: expected integer or `default`, found string literal
2023-08-11 19:14:34 +00:00
= help: `#[catch]` expects a status code int or `default`: `#[catch(404)]` or `#[catch(default)]`
--> tests/ui-fail-stable/catch.rs:11:9
|
11 | #[catch("404")]
| ^^^^^
error: unexpected keyed parameter: expected literal or identifier
2023-08-11 19:14:34 +00:00
= help: `#[catch]` expects a status code int or `default`: `#[catch(404)]` or `#[catch(default)]`
--> tests/ui-fail-stable/catch.rs:14:9
|
14 | #[catch(code = "404")]
| ^^^^
error: unexpected keyed parameter: expected literal or identifier
2023-08-11 19:14:34 +00:00
= help: `#[catch]` expects a status code int or `default`: `#[catch(404)]` or `#[catch(default)]`
--> tests/ui-fail-stable/catch.rs:17:9
|
17 | #[catch(code = 404)]
| ^^^^
error: status must be in range [100, 599]
2023-08-11 19:14:34 +00:00
= help: `#[catch]` expects a status code int or `default`: `#[catch(404)]` or `#[catch(default)]`
--> tests/ui-fail-stable/catch.rs:20:9
|
20 | #[catch(99)]
| ^^
error: status must be in range [100, 599]
2023-08-11 19:14:34 +00:00
= help: `#[catch]` expects a status code int or `default`: `#[catch(404)]` or `#[catch(default)]`
--> tests/ui-fail-stable/catch.rs:23:9
|
23 | #[catch(600)]
| ^^^
error: unexpected attribute parameter: `message`
2023-08-11 19:14:34 +00:00
= help: `#[catch]` expects a status code int or `default`: `#[catch(404)]` or `#[catch(default)]`
--> tests/ui-fail-stable/catch.rs:26:14
|
26 | #[catch(400, message = "foo")]
| ^^^^^^^
error[E0308]: arguments to this function are incorrect
--> tests/ui-fail-stable/catch.rs:30:4
|
30 | fn f3(_request: &Request, other: bool) { }
| ^^ - ---- an argument of type `bool` is missing
| |
2023-05-25 18:59:46 +00:00
| unexpected argument of type `Status`
|
note: function defined here
--> tests/ui-fail-stable/catch.rs:30:4
|
30 | fn f3(_request: &Request, other: bool) { }
| ^^ ------------------ -----------
help: provide the argument
|
29 | f3(bool, /* bool */)
|