Skip to content

Commit c4f213b

Browse files
authoredNov 8, 2022
fix(reactivity-transform): add semicolon after statements (#6303)
1 parent f67bb50 commit c4f213b

File tree

4 files changed

+20
-14
lines changed

4 files changed

+20
-14
lines changed
 

‎packages/compiler-sfc/__tests__/__snapshots__/compileScriptPropsTransform.spec.ts.snap

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ exports[`sfc props transform $$() escape 1`] = `
66
export default {
77
props: ['foo'],
88
setup(__props) {
9-
const __props_bar = _toRef(__props, 'bar')
10-
const __props_foo = _toRef(__props, 'foo')
9+
const __props_bar = _toRef(__props, 'bar');
10+
const __props_foo = _toRef(__props, 'foo');
1111
1212
1313
console.log((__props_foo))
@@ -160,7 +160,7 @@ export default {
160160
props: ['foo', 'bar', 'baz'],
161161
setup(__props) {
162162
163-
const rest = _createPropsRestProxy(__props, [\\"foo\\",\\"bar\\"])
163+
const rest = _createPropsRestProxy(__props, [\\"foo\\",\\"bar\\"]);
164164
165165
166166

‎packages/compiler-sfc/src/compileScript.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@ export function compileScript(
14191419
startOffset,
14201420
`\nconst ${propsDestructureRestId} = ${helper(
14211421
`createPropsRestProxy`
1422-
)}(__props, ${JSON.stringify(Object.keys(propsDestructuredBindings))})\n`
1422+
)}(__props, ${JSON.stringify(Object.keys(propsDestructuredBindings))});\n`
14231423
)
14241424
}
14251425
// inject temp variables for async context preservation

‎packages/reactivity-transform/__tests__/__snapshots__/reactivityTransform.spec.ts.snap

+7-7
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ exports[`array destructure 1`] = `
6161
6262
let n = _ref(1), __$temp_1 = (useFoo()),
6363
a = _toRef(__$temp_1, 0),
64-
b = _toRef(__$temp_1, 1, 1)
64+
b = _toRef(__$temp_1, 1, 1);
6565
console.log(n.value, a.value, b.value)
6666
"
6767
`;
@@ -90,7 +90,7 @@ exports[`macro import alias and removal 1`] = `
9090
let a = _ref(1)
9191
const __$temp_1 = (useMouse()),
9292
x = _toRef(__$temp_1, 'x'),
93-
y = _toRef(__$temp_1, 'y')
93+
y = _toRef(__$temp_1, 'y');
9494
"
9595
`;
9696
@@ -130,10 +130,10 @@ exports[`nested destructure 1`] = `
130130
"import { toRef as _toRef } from 'vue'
131131
132132
let __$temp_1 = (useFoo()),
133-
b = _toRef(__$temp_1[0].a, 'b')
133+
b = _toRef(__$temp_1[0].a, 'b');
134134
let __$temp_2 = (useBar()),
135135
d = _toRef(__$temp_2.c, 0),
136-
e = _toRef(__$temp_2.c, 1)
136+
e = _toRef(__$temp_2.c, 1);
137137
console.log(b.value, d.value, e.value)
138138
"
139139
`;
@@ -183,9 +183,9 @@ exports[`object destructure 1`] = `
183183
c = _toRef(__$temp_1, 'b'),
184184
d = _toRef(__$temp_1, 'd', 1),
185185
f = _toRef(__$temp_1, 'e', 2),
186-
h = _toRef(__$temp_1, g)
186+
h = _toRef(__$temp_1, g);
187187
let __$temp_2 = (useSomething(() => 1)),
188-
foo = _toRef(__$temp_2, 'foo');
188+
foo = _toRef(__$temp_2, 'foo');;
189189
console.log(n.value, a.value, c.value, d.value, f.value, h.value, foo.value)
190190
"
191191
`;
@@ -194,7 +194,7 @@ exports[`object destructure w/ mid-path default values 1`] = `
194194
"import { toRef as _toRef } from 'vue'
195195
196196
const __$temp_1 = (useFoo()),
197-
b = _toRef((__$temp_1.a || { b: 123 }), 'b')
197+
b = _toRef((__$temp_1.a || { b: 123 }), 'b');
198198
console.log(b.value)
199199
"
200200
`;

‎packages/reactivity-transform/src/reactivityTransform.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,8 @@ export function transformAST(
321321
s.overwrite(pattern.start! + offset, pattern.end! + offset, tempVar)
322322
}
323323

324+
let nameId: Identifier | undefined
324325
for (const p of pattern.properties) {
325-
let nameId: Identifier | undefined
326326
let key: Expression | string | undefined
327327
let defaultValue: Expression | undefined
328328
if (p.type === 'ObjectProperty') {
@@ -391,6 +391,9 @@ export function transformAST(
391391
)
392392
}
393393
}
394+
if (nameId) {
395+
s.appendLeft(call.end! + offset, ';')
396+
}
394397
}
395398

396399
function processRefArrayPattern(
@@ -405,10 +408,10 @@ export function transformAST(
405408
s.overwrite(pattern.start! + offset, pattern.end! + offset, tempVar)
406409
}
407410

411+
let nameId: Identifier | undefined
408412
for (let i = 0; i < pattern.elements.length; i++) {
409413
const e = pattern.elements[i]
410414
if (!e) continue
411-
let nameId: Identifier | undefined
412415
let defaultValue: Expression | undefined
413416
if (e.type === 'Identifier') {
414417
// [a] --> [__a]
@@ -438,6 +441,9 @@ export function transformAST(
438441
)
439442
}
440443
}
444+
if (nameId) {
445+
s.appendLeft(call.end! + offset, ';')
446+
}
441447
}
442448

443449
type PathSegmentAtom = Expression | string | number
@@ -545,7 +551,7 @@ export function transformAST(
545551
offset,
546552
`const __props_${publicKey} = ${helper(
547553
`toRef`
548-
)}(__props, '${publicKey}')\n`
554+
)}(__props, '${publicKey}');\n`
549555
)
550556
}
551557
}

0 commit comments

Comments
 (0)
Please sign in to comment.