From: Evan You Date: Fri, 3 Apr 2020 13:21:21 +0000 (-0400) Subject: chore: remove debugger X-Git-Tag: v3.0.0-alpha.11~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b03b922e25d23b8233805c587b897d5d8523531;p=thirdparty%2Fvuejs%2Fcore.git chore: remove debugger --- diff --git a/packages/runtime-core/src/profiling.ts b/packages/runtime-core/src/profiling.ts index d841cd8499..f90ad64ccb 100644 --- a/packages/runtime-core/src/profiling.ts +++ b/packages/runtime-core/src/profiling.ts @@ -7,7 +7,6 @@ export function startMeasure( instance: ComponentInternalInstance, type: string ) { - if (!instance.appContext) debugger if (instance.appContext.config.performance && isSupported()) { perf.mark(`vue-${type}-${instance.uid}`) }