(source: string)
| 318 | 'g' |
| 319 | ); |
| 320 | export function blankCppInlineMacros(source: string): string { |
| 321 | if (!CPP_INLINE_MACROS.some((m) => source.indexOf(m) !== -1)) return source; |
| 322 | return source.replace(CPP_INLINE_MACRO_RE, (m) => ' '.repeat(m.length)); |
| 323 | } |
| 324 | |
| 325 | // Bare C/C++ type/qualifier tokens that must never be taken as a recovered |
| 326 | // function name (guards `recoverMangledCppName` against the `Ret (name)` idiom, |
no outgoing calls
no test coverage detected