CPP_PRIMITIVE_NAMES (languages/c-cpp.ts) — recoverMangledCppName's guard.
(name: &str)
| 156 | |
| 157 | /// CPP_PRIMITIVE_NAMES (languages/c-cpp.ts) — recoverMangledCppName's guard. |
| 158 | fn is_cpp_primitive_name(name: &str) -> bool { |
| 159 | matches!( |
| 160 | name, |
| 161 | "bool" | "void" | "int" | "char" | "short" | "long" | "float" | "double" | "unsigned" |
| 162 | | "signed" | "wchar_t" | "char8_t" | "char16_t" | "char32_t" | "char_t" | "size_t" |
| 163 | | "auto" | "const" | "struct" | "class" | "enum" | "union" | "typename" |
| 164 | ) |
| 165 | } |
| 166 | |
| 167 | /// NAME_STOPLIST (function-ref.ts). |
| 168 | fn is_stoplisted(name: &str) -> bool { |
no outgoing calls
no test coverage detected