(filename = 'node.cpuprofile')
| 457 | } |
| 458 | |
| 459 | save(filename = 'node.cpuprofile') { |
| 460 | const absoluteFile = Path.resolve(filename); |
| 461 | const json = JSONStringify(this.data); |
| 462 | FS.writeFileSync(absoluteFile, json); |
| 463 | print('Saved profile to ' + absoluteFile); |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | class SourceSnippet { |
nothing calls this directly
no test coverage detected