( type, name, kind, start, end, operationSucceeded )
| 14 | * @param {number} end |
| 15 | */ |
| 16 | export function addProfileEntry( |
| 17 | type, |
| 18 | name, |
| 19 | kind, |
| 20 | start, |
| 21 | end, |
| 22 | operationSucceeded |
| 23 | ) { |
| 24 | profileEntries.push({ |
| 25 | type, |
| 26 | name, |
| 27 | start, |
| 28 | end, |
| 29 | kind, |
| 30 | operationSucceeded, |
| 31 | }); |
| 32 | } |
| 33 | |
| 34 | export function clearProfilerData() { |
| 35 | profileEntries = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…