mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-03-15 05:55:11 -05:00
Remove redundant type annotation
This commit is contained in:
@@ -106,7 +106,7 @@ namespace ts.tracing {
|
||||
* In the future we might implement an exit handler to dump unfinished events which would deprecate
|
||||
* these operations.
|
||||
*/
|
||||
export function push(phase: Phase, name: string, args?: object, separateBeginAndEnd: boolean = false) {
|
||||
export function push(phase: Phase, name: string, args?: object, separateBeginAndEnd = false) {
|
||||
if (!traceFd) return;
|
||||
if (separateBeginAndEnd) {
|
||||
writeEvent("B", phase, name, args);
|
||||
|
||||
Reference in New Issue
Block a user