From f7976e18f12f51d6bc73afafa2ee3155fb0e87cf Mon Sep 17 00:00:00 2001 From: Fabio B Date: Fri, 1 Mar 2019 13:46:47 -0800 Subject: [PATCH] Update packages/sol-profiler/src/profiler_subprovider.ts Co-Authored-By: LogvinovLeon --- packages/sol-profiler/src/profiler_subprovider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sol-profiler/src/profiler_subprovider.ts b/packages/sol-profiler/src/profiler_subprovider.ts index 2d2e94b5df..eed744812f 100644 --- a/packages/sol-profiler/src/profiler_subprovider.ts +++ b/packages/sol-profiler/src/profiler_subprovider.ts @@ -128,7 +128,7 @@ export const profilerHandler: SingleFileSubtraceHandler = ( // `interestingStructLogs` are those that map back to source ranges within the current file. // It also doesn't include any that cannot be mapped back // This is a perf optimization reducing the work done in the loop over `statementIds`. - // TODO(logvinov) Optimize the loop below. + // TODO(logvinov): Optimize the loop below. const interestingStructLogs = _.filter(subtrace, structLog => { const sourceRange = pcToSourceRange[structLog.pc]; if (_.isUndefined(sourceRange)) {