leo_errors/errors/static_analyzer/
static_analyzer_warning.rs1use std::fmt::Display;
18
19create_messages!(
20 #[derive(Hash, Eq, PartialEq)]
22 StaticAnalyzerWarning,
23 code_mask: 4000i32,
24 code_prefix: "SAZ",
25
26 @formatted
27 some_paths_do_not_await_all_futures {
28 args: (num_total_paths: impl Display, num_unawaited_paths: impl Display),
29 msg: format!("Not all paths through the function await all futures. {num_unawaited_paths}/{num_total_paths} paths contain at least one future that is never awaited."),
30 help: Some("Ex: `f.await()` to await a future. Remove this warning by including the `--disable-conditional-branch-type-checking` flag.".to_string()),
31 }
32
33 @formatted
34 some_paths_contain_duplicate_future_awaits {
35 args: (num_total_paths: impl Display, num_duplicate_await_paths: impl Display),
36 msg: format!("Some paths through the function contain duplicate future awaits. {num_duplicate_await_paths}/{num_total_paths} paths contain at least one future that is awaited more than once."),
37 help: Some("Look at the times `.await()` is called, and try to reduce redundancies. Remove this warning by including the `--disable-conditional-branch-type-checking` flag.".to_string()),
38 }
39
40 @formatted
41 max_conditional_block_depth_exceeded {
42 args: (max: impl Display),
43 msg: format!("The type checker has exceeded the max depth of nested conditional blocks: {max}."),
44 help: Some("Re-run with a larger maximum depth using the `--conditional_block_max_depth` build option. Ex: `leo run main --conditional_block_max_depth 25`.".to_string()),
45 }
46
47 @formatted
48 future_not_awaited_in_order {
49 args: (future_name: impl Display),
50 msg: format!("The future `{}` is not awaited in the order in which they were passed in to the `async` function.", future_name),
51 help: Some("While it is not required for futures to be awaited in order, there is some specific behavior that arises, which may affect the semantics of your program. See `https://github.com/AleoNet/snarkVM/issues/2570` for more context.".to_string()),
52 }
53);