Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 | 92x 92x 92x 92x 92x 2119x 92x 10593x 92x 2023x 19x 2004x 15x 1989x 8x 1981x 3x 92x 92x 1569x 92x 92x 92x 92x 26x 26x 26x 26x 26x 26x 26x 282x 282x 141x 20x 20x 20x 121x 2x 2x 2x 119x 7x 134x 126x 3x 3x 3x 123x 11x 112x 29x 18x 126x 2x 2x 2x 2x 1x 1x 1x 1x 13x 3x 3x 13x 18x 92x 184x 184x 175x 6x 175x 9x 92x 92x 532x 532x 532x 532x 532x 532x 532x 92x 3079x 92x 23447x 23447x 23447x 121909x 2176x 2176x 23447x 23447x 23447x 23447x 92x 37663x 92x 2510x 1691x 1691x 171x 92x 568x 371x 371x 107x 107x 37x 264x 35x 92x 1631x 92x 311x 336x 92x 1360x 92x 283x 92x 1838x 92x 3366x 92x 1936x 92x 1166x 92x 7x 6x 6x 2x 5x 92x 94x 94x 94x 5x 5x 5x 5x 94x 82x 12x 4x 4x 2x 1x 2x 1x 1x 4x 8x 7x 5x 7x 1x 1x 1x 94x 91x 1x 90x 3x 3x 9x 9x 9x 9x 10x 9x 92x 376x 21x 92x 272x 48x 224x 44x 34x 34x 1x 53x 1x 1x 1x 113x 115x 30x 2x 92x 86x 4x 82x 92x 505x 485x 485x 485x 485x | import { SourceLocation, Position, ElementNode, NodeTypes, CallExpression, createCallExpression, DirectiveNode, ElementTypes, TemplateChildNode, RootNode, ObjectExpression, Property, JSChildNode, createObjectExpression, SlotOutletNode, TemplateNode, RenderSlotCall, ExpressionNode, IfBranchNode, TextNode, InterpolationNode, VNodeCall, SimpleExpressionNode, BlockCodegenNode, MemoExpression } from './ast' import { TransformContext } from './transform' import { MERGE_PROPS, TELEPORT, SUSPENSE, KEEP_ALIVE, BASE_TRANSITION, TO_HANDLERS, NORMALIZE_PROPS, GUARD_REACTIVE_PROPS, CREATE_BLOCK, CREATE_ELEMENT_BLOCK, CREATE_VNODE, CREATE_ELEMENT_VNODE, WITH_MEMO, OPEN_BLOCK } from './runtimeHelpers' import { isString, isObject, hyphenate, extend, NOOP } from '@vue/shared' import { PropsExpression } from './transforms/transformElement' import { parseExpression } from '@babel/parser' import { Expression } from '@babel/types' export const isStaticExp = (p: JSChildNode): p is SimpleExpressionNode => p.type === NodeTypes.SIMPLE_EXPRESSION && p.isStatic export const isBuiltInType = (tag: string, expected: string): boolean => tag === expected || tag === hyphenate(expected) export function isCoreComponent(tag: string): symbol | void { if (isBuiltInType(tag, 'Teleport')) { return TELEPORT } else if (isBuiltInType(tag, 'Suspense')) { return SUSPENSE } else if (isBuiltInType(tag, 'KeepAlive')) { return KEEP_ALIVE } else if (isBuiltInType(tag, 'BaseTransition')) { return BASE_TRANSITION } } const nonIdentifierRE = /^\d|[^\$\w]/ export const isSimpleIdentifier = (name: string): boolean => !nonIdentifierRE.test(name) const enum MemberExpLexState { inMemberExp, inBrackets, inParens, inString } const validFirstIdentCharRE = /[A-Za-z_$\xA0-\uFFFF]/ const validIdentCharRE = /[\.\?\w$\xA0-\uFFFF]/ const whitespaceRE = /\s+[.[]\s*|\s*[.[]\s+/g /** * Simple lexer to check if an expression is a member expression. This is * lax and only checks validity at the root level (i.e. does not validate exps * inside square brackets), but it's ok since these are only used on template * expressions and false positives are invalid expressions in the first place. */ export const isMemberExpressionBrowser = (path: string): boolean => { // remove whitespaces around . or [ first path = path.trim().replace(whitespaceRE, s => s.trim()) let state = MemberExpLexState.inMemberExp let stateStack: MemberExpLexState[] = [] let currentOpenBracketCount = 0 let currentOpenParensCount = 0 let currentStringType: "'" | '"' | '`' | null = null for (let i = 0; i < path.length; i++) { const char = path.charAt(i) switch (state) { case MemberExpLexState.inMemberExp: if (char === '[') { stateStack.push(state) state = MemberExpLexState.inBrackets currentOpenBracketCount++ } else if (char === '(') { stateStack.push(state) state = MemberExpLexState.inParens currentOpenParensCount++ } else if ( !(i === 0 ? validFirstIdentCharRE : validIdentCharRE).test(char) ) { return false } break case MemberExpLexState.inBrackets: if (char === `'` || char === `"` || char === '`') { stateStack.push(state) state = MemberExpLexState.inString currentStringType = char } else if (char === `[`) { currentOpenBracketCount++ } else if (char === `]`) { if (!--currentOpenBracketCount) { state = stateStack.pop()! } } break case MemberExpLexState.inParens: Iif (char === `'` || char === `"` || char === '`') { stateStack.push(state) state = MemberExpLexState.inString currentStringType = char } else Iif (char === `(`) { currentOpenParensCount++ } else if (char === `)`) { // if the exp ends as a call then it should not be considered valid if (i === path.length - 1) { return false } if (!--currentOpenParensCount) { state = stateStack.pop()! } } break case MemberExpLexState.inString: if (char === currentStringType) { state = stateStack.pop()! currentStringType = null } break } } return !currentOpenBracketCount && !currentOpenParensCount } export const isMemberExpressionNode = __BROWSER__ ? (NOOP as any as (path: string, context: TransformContext) => boolean) : (path: string, context: TransformContext): boolean => { try { let ret: Expression = parseExpression(path, { plugins: context.expressionPlugins }) if (ret.type === 'TSAsExpression' || ret.type === 'TSTypeAssertion') { ret = ret.expression } return ( ret.type === 'MemberExpression' || ret.type === 'OptionalMemberExpression' || ret.type === 'Identifier' ) } catch (e) { return false } } export const isMemberExpression = __BROWSER__ ? isMemberExpressionBrowser : isMemberExpressionNode export function getInnerRange( loc: SourceLocation, offset: number, length: number ): SourceLocation { __TEST__ && assert(offset <= loc.source.length) const source = loc.source.slice(offset, offset + length) const newLoc: SourceLocation = { source, start: advancePositionWithClone(loc.start, loc.source, offset), end: loc.end } if (length != null) { __TEST__ && assert(offset + length <= loc.source.length) newLoc.end = advancePositionWithClone( loc.start, loc.source, offset + length ) } return newLoc } export function advancePositionWithClone( pos: Position, source: string, numberOfCharacters: number = source.length ): Position { return advancePositionWithMutation( extend({}, pos), source, numberOfCharacters ) } // advance by mutation without cloning (for performance reasons), since this // gets called a lot in the parser export function advancePositionWithMutation( pos: Position, source: string, numberOfCharacters: number = source.length ): Position { let linesCount = 0 let lastNewLinePos = -1 for (let i = 0; i < numberOfCharacters; i++) { if (source.charCodeAt(i) === 10 /* newline char code */) { linesCount++ lastNewLinePos = i } } pos.offset += numberOfCharacters pos.line += linesCount pos.column = lastNewLinePos === -1 ? pos.column + numberOfCharacters : numberOfCharacters - lastNewLinePos return pos } export function assert(condition: boolean, msg?: string) { /* istanbul ignore if */ if (!condition) { throw new Error(msg || `unexpected compiler condition`) } } export function findDir( node: ElementNode, name: string | RegExp, allowEmpty: boolean = false ): DirectiveNode | undefined { for (let i = 0; i < node.props.length; i++) { const p = node.props[i] if ( p.type === NodeTypes.DIRECTIVE && (allowEmpty || p.exp) && (isString(name) ? p.name === name : name.test(p.name)) ) { return p } } } export function findProp( node: ElementNode, name: string, dynamicOnly: boolean = false, allowEmpty: boolean = false ): ElementNode['props'][0] | undefined { for (let i = 0; i < node.props.length; i++) { const p = node.props[i] if (p.type === NodeTypes.ATTRIBUTE) { Iif (dynamicOnly) continue if (p.name === name && (p.value || allowEmpty)) { return p } } else if ( p.name === 'bind' && (p.exp || allowEmpty) && isStaticArgOf(p.arg, name) ) { return p } } } export function isStaticArgOf( arg: DirectiveNode['arg'], name: string ): boolean { return !!(arg && isStaticExp(arg) && arg.content === name) } export function hasDynamicKeyVBind(node: ElementNode): boolean { return node.props.some( p => p.type === NodeTypes.DIRECTIVE && p.name === 'bind' && (!p.arg || // v-bind="obj" p.arg.type !== NodeTypes.SIMPLE_EXPRESSION || // v-bind:[_ctx.foo] !p.arg.isStatic) // v-bind:[foo] ) } export function isText( node: TemplateChildNode ): node is TextNode | InterpolationNode { return node.type === NodeTypes.INTERPOLATION || node.type === NodeTypes.TEXT } export function isVSlot(p: ElementNode['props'][0]): p is DirectiveNode { return p.type === NodeTypes.DIRECTIVE && p.name === 'slot' } export function isTemplateNode( node: RootNode | TemplateChildNode ): node is TemplateNode { return ( node.type === NodeTypes.ELEMENT && node.tagType === ElementTypes.TEMPLATE ) } export function isSlotOutlet( node: RootNode | TemplateChildNode ): node is SlotOutletNode { return node.type === NodeTypes.ELEMENT && node.tagType === ElementTypes.SLOT } export function getVNodeHelper(ssr: boolean, isComponent: boolean) { return ssr || isComponent ? CREATE_VNODE : CREATE_ELEMENT_VNODE } export function getVNodeBlockHelper(ssr: boolean, isComponent: boolean) { return ssr || isComponent ? CREATE_BLOCK : CREATE_ELEMENT_BLOCK } const propsHelperSet = new Set([NORMALIZE_PROPS, GUARD_REACTIVE_PROPS]) function getUnnormalizedProps( props: PropsExpression | '{}', callPath: CallExpression[] = [] ): [PropsExpression | '{}', CallExpression[]] { if ( props && !isString(props) && props.type === NodeTypes.JS_CALL_EXPRESSION ) { const callee = props.callee if (!isString(callee) && propsHelperSet.has(callee)) { return getUnnormalizedProps( props.arguments[0] as PropsExpression, callPath.concat(props) ) } } return [props, callPath] } export function injectProp( node: VNodeCall | RenderSlotCall, prop: Property, context: TransformContext ) { let propsWithInjection: ObjectExpression | CallExpression | undefined /** * 1. mergeProps(...) * 2. toHandlers(...) * 3. normalizeProps(...) * 4. normalizeProps(guardReactiveProps(...)) * * we need to get the real props before normalization */ let props = node.type === NodeTypes.VNODE_CALL ? node.props : node.arguments[2] let callPath: CallExpression[] = [] let parentCall: CallExpression | undefined if ( props && !isString(props) && props.type === NodeTypes.JS_CALL_EXPRESSION ) { const ret = getUnnormalizedProps(props) props = ret[0] callPath = ret[1] parentCall = callPath[callPath.length - 1] } if (props == null || isString(props)) { propsWithInjection = createObjectExpression([prop]) } else if (props.type === NodeTypes.JS_CALL_EXPRESSION) { // merged props... add ours // only inject key to object literal if it's the first argument so that // if doesn't override user provided keys const first = props.arguments[0] as string | JSChildNode if (!isString(first) && first.type === NodeTypes.JS_OBJECT_EXPRESSION) { // #6631 if (!hasProp(prop, first)) { first.properties.unshift(prop) } } else { if (props.callee === TO_HANDLERS) { // #2366 propsWithInjection = createCallExpression(context.helper(MERGE_PROPS), [ createObjectExpression([prop]), props ]) } else { props.arguments.unshift(createObjectExpression([prop])) } } !propsWithInjection && (propsWithInjection = props) } else if (props.type === NodeTypes.JS_OBJECT_EXPRESSION) { if (!hasProp(prop, props)) { props.properties.unshift(prop) } propsWithInjection = props } else { // single v-bind with expression, return a merged replacement propsWithInjection = createCallExpression(context.helper(MERGE_PROPS), [ createObjectExpression([prop]), props ]) // in the case of nested helper call, e.g. `normalizeProps(guardReactiveProps(props))`, // it will be rewritten as `normalizeProps(mergeProps({ key: 0 }, props))`, // the `guardReactiveProps` will no longer be needed if (parentCall && parentCall.callee === GUARD_REACTIVE_PROPS) { parentCall = callPath[callPath.length - 2] } } if (node.type === NodeTypes.VNODE_CALL) { if (parentCall) { parentCall.arguments[0] = propsWithInjection } else { node.props = propsWithInjection } } else { Iif (parentCall) { parentCall.arguments[0] = propsWithInjection } else { node.arguments[2] = propsWithInjection } } } // check existing key to avoid overriding user provided keys function hasProp(prop: Property, props: ObjectExpression) { let result = false if (prop.key.type === NodeTypes.SIMPLE_EXPRESSION) { const propKeyName = prop.key.content result = props.properties.some( p => p.key.type === NodeTypes.SIMPLE_EXPRESSION && p.key.content === propKeyName ) } return result } export function toValidAssetId( name: string, type: 'component' | 'directive' | 'filter' ): string { // see issue#4422, we need adding identifier on validAssetId if variable `name` has specific character return `_${type}_${name.replace(/[^\w]/g, (searchValue, replaceValue) => { return searchValue === '-' ? '_' : name.charCodeAt(replaceValue).toString() })}` } // Check if a node contains expressions that reference current context scope ids export function hasScopeRef( node: TemplateChildNode | IfBranchNode | ExpressionNode | undefined, ids: TransformContext['identifiers'] ): boolean { if (!node || Object.keys(ids).length === 0) { return false } switch (node.type) { case NodeTypes.ELEMENT: for (let i = 0; i < node.props.length; i++) { const p = node.props[i] if ( p.type === NodeTypes.DIRECTIVE && (hasScopeRef(p.arg, ids) || hasScopeRef(p.exp, ids)) ) { return true } } return node.children.some(c => hasScopeRef(c, ids)) case NodeTypes.FOR: Iif (hasScopeRef(node.source, ids)) { return true } return node.children.some(c => hasScopeRef(c, ids)) case NodeTypes.IF: return node.branches.some(b => hasScopeRef(b, ids)) case NodeTypes.IF_BRANCH: Iif (hasScopeRef(node.condition, ids)) { return true } return node.children.some(c => hasScopeRef(c, ids)) case NodeTypes.SIMPLE_EXPRESSION: return ( !node.isStatic && isSimpleIdentifier(node.content) && !!ids[node.content] ) case NodeTypes.COMPOUND_EXPRESSION: return node.children.some(c => isObject(c) && hasScopeRef(c, ids)) case NodeTypes.INTERPOLATION: case NodeTypes.TEXT_CALL: return hasScopeRef(node.content, ids) case NodeTypes.TEXT: case NodeTypes.COMMENT: return false default: Iif (__DEV__) { const exhaustiveCheck: never = node exhaustiveCheck } return false } } export function getMemoedVNodeCall(node: BlockCodegenNode | MemoExpression) { if (node.type === NodeTypes.JS_CALL_EXPRESSION && node.callee === WITH_MEMO) { return node.arguments[1].returns as VNodeCall } else { return node } } export function makeBlock( node: VNodeCall, { helper, removeHelper, inSSR }: TransformContext ) { if (!node.isBlock) { node.isBlock = true removeHelper(getVNodeHelper(inSSR, node.isComponent)) helper(OPEN_BLOCK) helper(getVNodeBlockHelper(inSSR, node.isComponent)) } } |