File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
front_end/models/trace/helpers Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -352,11 +352,10 @@ export function createSortedSyntheticEvents<T extends Types.Events.PairableAsync
352352 } > ,
353353 syntheticEventCallback ?: ( syntheticEvent : Types . Events . SyntheticEventPair < T > ) => void ,
354354 ) : Array < Types . Events . SyntheticEventPair < T > > {
355- const syntheticEvents : Types . Events . SyntheticEventPair < T > [ ] = [ ] ;
355+ const syntheticEvents : Array < Types . Events . SyntheticEventPair < T > > = [ ] ;
356356 let currentAnimationFrame : Types . Events . SyntheticEventPair < T > & {
357357 phases ?: Array < Types . Events . SyntheticEventPair < T > > ,
358358 } = { } as Types . Events . SyntheticEventPair < T > ;
359- const syntheticEvents : Array < Types . Events . SyntheticEventPair < T > > = [ ] ;
360359 for ( const [ id , eventsTriplet ] of matchedPairs . entries ( ) ) {
361360 const beginEvent = eventsTriplet . begin ;
362361 const endEvent = eventsTriplet . end ;
You can’t perform that action at this time.
0 commit comments