(include_path: &str)
| 2375 | } |
| 2376 | |
| 2377 | fn is_top_level_include(include_path: &str) -> bool { |
| 2378 | !include_path.contains('/') && !include_path.contains('\\') |
| 2379 | } |
| 2380 | |
| 2381 | fn include_path_looks_like_fastled_code(include_path: &str) -> bool { |
| 2382 | if include_path.ends_with(".hpp") || include_path.ends_with(".cpp") { |
no test coverage detected