From: Cédric Exbrayat Date: Mon, 28 Oct 2019 16:04:04 +0000 (+0100) Subject: chore: fix comments referencing renamed file [ci skip] (#404) X-Git-Tag: v3.0.0-alpha.0~287 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=36b7e4e52e346c7c20a8977efe1e67f76569769e;p=thirdparty%2Fvuejs%2Fcore.git chore: fix comments referencing renamed file [ci skip] (#404) --- diff --git a/packages/compiler-core/src/transforms/vBind.ts b/packages/compiler-core/src/transforms/vBind.ts index 5f17714c31..39582af5cc 100644 --- a/packages/compiler-core/src/transforms/vBind.ts +++ b/packages/compiler-core/src/transforms/vBind.ts @@ -4,7 +4,7 @@ import { createCompilerError, ErrorCodes } from '../errors' import { camelize } from '@vue/shared' import { CAMELIZE } from '../runtimeHelpers' -// v-bind without arg is handled directly in ./element.ts due to it affecting +// v-bind without arg is handled directly in ./transformElements.ts due to it affecting // codegen for the entire props object. This transform here is only for v-bind // *with* args. export const transformBind: DirectiveTransform = (dir, node, context) => { diff --git a/packages/compiler-core/src/transforms/vOn.ts b/packages/compiler-core/src/transforms/vOn.ts index 5f5af20f69..2e5b3b9c0b 100644 --- a/packages/compiler-core/src/transforms/vOn.ts +++ b/packages/compiler-core/src/transforms/vOn.ts @@ -16,7 +16,7 @@ import { isMemberExpression, hasScopeRef } from '../utils' const fnExpRE = /^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/ export interface VOnDirectiveNode extends DirectiveNode { - // v-on without arg is handled directly in ./element.ts due to it affecting + // v-on without arg is handled directly in ./transformElements.ts due to it affecting // codegen for the entire props object. This transform here is only for v-on // *with* args. arg: ExpressionNode