(str: string)
| 1600 | } |
| 1601 | |
| 1602 | function isIntegral(str: string): boolean { |
| 1603 | const regex = /^-?\d+$/; |
| 1604 | return regex.test(str); |
| 1605 | } |
| 1606 | |
| 1607 | export function getLoggingLevel() { |
| 1608 | return getNumericLoggingLevel(vscode.workspace.getConfiguration("C_Cpp", null).get<string>("loggingLevel")); |
no outgoing calls
no test coverage detected