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 | 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 1x 84x 1x 84x 1x 1x 1x 1x 64x 64x 1x 1x 69x 69x 2x 2x 2x 2x 2x 1x 2x 11x 2x 7x 84x | import { extend, looseEqual, looseIndexOf, NOOP, toDisplayString, toNumber } from '@vue/shared' import { ComponentPublicInstance, PublicPropertiesMap } from '../componentPublicInstance' import { getCompatChildren } from './instanceChildren' import { DeprecationTypes, assertCompatEnabled, isCompatEnabled } from './compatConfig' import { off, on, once } from './instanceEventEmitter' import { getCompatListeners } from './instanceListeners' import { shallowReadonly } from '@vue/reactivity' import { legacySlotProxyHandlers } from './componentFunctional' import { compatH } from './renderFn' import { createCommentVNode, createTextVNode } from '../vnode' import { renderList } from '../helpers/renderList' import { legacyBindDynamicKeys, legacyBindObjectListeners, legacyBindObjectProps, legacyCheckKeyCodes, legacyMarkOnce, legacyPrependModifier, legacyRenderSlot, legacyRenderStatic, legacyresolveScopedSlots } from './renderHelpers' import { resolveFilter } from '../helpers/resolveAssets' import { InternalSlots, Slots } from '../componentSlots' import { ContextualRenderFn } from '../componentRenderContext' import { resolveMergedOptions } from '../componentOptions' export type LegacyPublicInstance = ComponentPublicInstance & LegacyPublicProperties export interface LegacyPublicProperties { $set(target: object, key: string, value: any): void $delete(target: object, key: string): void $mount(el?: string | Element): this $destroy(): void $scopedSlots: Slots $on(event: string | string[], fn: Function): this $once(event: string, fn: Function): this $off(event?: string | string[], fn?: Function): this $children: LegacyPublicProperties[] $listeners: Record<string, Function | Function[]> } export function installCompatInstanceProperties(map: PublicPropertiesMap) { const set = (target: any, key: any, val: any) => { target[key] = val } const del = (target: any, key: any) => { delete target[key] } extend(map, { $set: i => { assertCompatEnabled(DeprecationTypes.INSTANCE_SET, i) return set }, $delete: i => { assertCompatEnabled(DeprecationTypes.INSTANCE_DELETE, i) return del }, $mount: i => { assertCompatEnabled( DeprecationTypes.GLOBAL_MOUNT, null /* this warning is global */ ) // root mount override from ./global.ts in installCompatMount return i.ctx._compat_mount || NOOP }, $destroy: i => { assertCompatEnabled(DeprecationTypes.INSTANCE_DESTROY, i) // root destroy override from ./global.ts in installCompatMount return i.ctx._compat_destroy || NOOP }, // overrides existing accessor $slots: i => { Iif ( isCompatEnabled(DeprecationTypes.RENDER_FUNCTION, i) && i.render && i.render._compatWrapped ) { return new Proxy(i.slots, legacySlotProxyHandlers) } return __DEV__ ? shallowReadonly(i.slots) : i.slots }, $scopedSlots: i => { assertCompatEnabled(DeprecationTypes.INSTANCE_SCOPED_SLOTS, i) const res: InternalSlots = {} for (const key in i.slots) { const fn = i.slots[key]! if (!(fn as ContextualRenderFn)._ns /* non-scoped slot */) { res[key] = fn } } return res }, $on: i => on.bind(null, i), $once: i => once.bind(null, i), $off: i => off.bind(null, i), $children: getCompatChildren, $listeners: getCompatListeners } as PublicPropertiesMap) /* istanbul ignore if */ if (isCompatEnabled(DeprecationTypes.PRIVATE_APIS, null)) { extend(map, { // needed by many libs / render fns $vnode: i => i.vnode, // inject additional properties into $options for compat // e.g. vuex needs this.$options.parent $options: i => { const res = extend({}, resolveMergedOptions(i)) res.parent = i.proxy!.$parent res.propsData = i.vnode.props return res }, // some private properties that are likely accessed... _self: i => i.proxy, _uid: i => i.uid, _data: i => i.data, _isMounted: i => i.isMounted, _isDestroyed: i => i.isUnmounted, // v2 render helpers $createElement: () => compatH, _c: () => compatH, _o: () => legacyMarkOnce, _n: () => toNumber, _s: () => toDisplayString, _l: () => renderList, _t: i => legacyRenderSlot.bind(null, i), _q: () => looseEqual, _i: () => looseIndexOf, _m: i => legacyRenderStatic.bind(null, i), _f: () => resolveFilter, _k: i => legacyCheckKeyCodes.bind(null, i), _b: () => legacyBindObjectProps, _v: () => createTextVNode, _e: () => createCommentVNode, _u: () => legacyresolveScopedSlots, _g: () => legacyBindObjectListeners, _d: () => legacyBindDynamicKeys, _p: () => legacyPrependModifier } as PublicPropertiesMap) } } |