1
1
import MagicString from 'magic-string'
2
2
import { parseExpression , ParserOptions , ParserPlugin } from '@babel/parser'
3
3
import { makeMap } from 'shared/util'
4
- import { walkIdentifiers } from './babelUtils'
4
+ import { isStaticProperty , walkIdentifiers } from './babelUtils'
5
5
import { BindingMetadata } from './types'
6
6
7
7
const doNotPrefix = makeMap (
@@ -39,18 +39,28 @@ export function prefixIdentifiers(
39
39
40
40
walkIdentifiers (
41
41
ast ,
42
- ident => {
42
+ ( ident , parent ) => {
43
43
const { name } = ident
44
44
if ( doNotPrefix ( name ) ) {
45
45
return
46
46
}
47
47
48
- if ( ! isScriptSetup ) {
49
- s . prependRight ( ident . start ! , '_vm.' )
50
- return
48
+ let prefix = `_vm.`
49
+ if ( isScriptSetup ) {
50
+ const type = bindings [ name ]
51
+ if ( type && type . startsWith ( 'setup' ) ) {
52
+ prefix = `_setup.`
53
+ }
51
54
}
52
55
53
- s . overwrite ( ident . start ! , ident . end ! , rewriteIdentifier ( name , bindings ) )
56
+ if ( isStaticProperty ( parent ) && parent . shorthand ) {
57
+ // property shorthand like { foo }, we need to add the key since
58
+ // we rewrite the value
59
+ // { foo } -> { foo: _vm.foo }
60
+ s . appendLeft ( ident . end ! , `: ${ prefix } ${ name } ` )
61
+ } else {
62
+ s . prependRight ( ident . start ! , prefix )
63
+ }
54
64
} ,
55
65
node => {
56
66
if ( node . type === 'WithStatement' ) {
@@ -70,15 +80,3 @@ export function prefixIdentifiers(
70
80
71
81
return s . toString ( )
72
82
}
73
-
74
- export function rewriteIdentifier (
75
- name : string ,
76
- bindings : BindingMetadata
77
- ) : string {
78
- const type = bindings [ name ]
79
- if ( type && type . startsWith ( 'setup' ) ) {
80
- return `_setup.${ name } `
81
- } else {
82
- return `_vm.${ name } `
83
- }
84
- }
0 commit comments