File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ const STOP_AFTER = Number.isFinite(Number(process.env.STOP_AFTER ?? ''))
5959 * @param methodsSummary Optional methods analysis (required for prove checks)
6060 * @returns An object with `start()` and `end()` methods
6161 */
62- function createPerfSession ( programName ?: string , methodsSummary ?: MethodsSummary ) {
62+ function createPerformanceSession ( programName ?: string , methodsSummary ?: MethodsSummary ) {
6363 const perfStack : PerfStack [ ] = [ ] ;
6464 let __endCounter = 0 ;
6565
@@ -238,7 +238,7 @@ const Performance = {
238238 * measuring prove performance.
239239 */
240240 create ( programName ?: string , methodsSummary ?: MethodsSummary ) {
241- return createPerfSession ( programName , methodsSummary ) ;
241+ return createPerformanceSession ( programName , methodsSummary ) ;
242242 } ,
243243} ;
244244
You can’t perform that action at this time.
0 commit comments