(file_path: &str)
| 2522 | } |
| 2523 | |
| 2524 | fn is_std_bridge_file(file_path: &str) -> bool { |
| 2525 | let normalized = normalize_path(file_path); |
| 2526 | STD_BRIDGE_FILE_WHITELIST |
| 2527 | .iter() |
| 2528 | .any(|bridge_path| normalized.ends_with(bridge_path)) |
| 2529 | } |
| 2530 | |
| 2531 | fn line_has_only_allowed_std_symbols(line: &str) -> bool { |
| 2532 | let code_part = split_line_comment(line); |
no test coverage detected