()
| 32 | |
| 33 | // Get the full path of shared lib. |
| 34 | function getSharedLibPath() { |
| 35 | if (common.isWindows) { |
| 36 | return path.join(kExecPath, 'node.dll'); |
| 37 | } |
| 38 | return path.join(kExecPath, `libnode.${kShlibSuffix}`); |
| 39 | } |
| 40 | |
| 41 | // Get the binary path of stack frames. |
| 42 | function getBinaryPath() { |
no test coverage detected
searching dependent graphs…