18mod shared_utils;
19mod tests;
20▶mod todo;
21mod utils;
22
· · ·
40 AbiCafe,
41 Bench,
42▶ CheckTodo,
43}
44
· · ·
69 Some("abi-cafe") => Command::AbiCafe,
70 Some("bench") => Command::Bench,
71▶ Some("check-todo") => Command::CheckTodo,
72 Some(flag) if flag.starts_with('-') => arg_error!("Expected command found flag {}", flag),
73 Some(command) => arg_error!("Unknown command {}", command),
· · ·
143 }
144
145▶ if command == Command::CheckTodo {
146 todo::run();
147 }
· · ·
146▶ todo::run();
147 }
148
+ 1 more matches in this file