Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(reactivity-transform): apply transform on exported variable decla…
…rations

fix #5298
  • Loading branch information
yyx990803 committed Jan 20, 2022
1 parent ae4b078 commit a81a992
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Expand Up @@ -4,7 +4,7 @@ exports[`$ unwrapping 1`] = `
"
import { ref, shallowRef } from 'vue'
let foo = (ref())
let a = (ref(1))
export let a = (ref(1))
let b = (shallowRef({
count: 0
}))
Expand Down
Expand Up @@ -19,7 +19,7 @@ test('$ unwrapping', () => {
const { code, rootRefs } = transform(`
import { ref, shallowRef } from 'vue'
let foo = $(ref())
let a = $(ref(1))
export let a = $(ref(1))
let b = $(shallowRef({
count: 0
}))
Expand All @@ -30,7 +30,7 @@ test('$ unwrapping', () => {
expect(code).not.toMatch(`$(ref(1))`)
expect(code).not.toMatch(`$(shallowRef({`)
expect(code).toMatch(`let foo = (ref())`)
expect(code).toMatch(`let a = (ref(1))`)
expect(code).toMatch(`export let a = (ref(1))`)
expect(code).toMatch(`
let b = (shallowRef({
count: 0
Expand Down
7 changes: 7 additions & 0 deletions packages/reactivity-transform/src/reactivityTransform.ts
Expand Up @@ -229,6 +229,12 @@ export function transformAST(
stmt.left.type === 'VariableDeclaration'
) {
walkVariableDeclaration(stmt.left)
} else if (
stmt.type === 'ExportNamedDeclaration' &&
stmt.declaration &&
stmt.declaration.type === 'VariableDeclaration'
) {
walkVariableDeclaration(stmt.declaration, isRoot)
}
}
}
Expand Down Expand Up @@ -562,6 +568,7 @@ export function transformAST(
return
}

// skip type nodes
if (
parent &&
parent.type.startsWith('TS') &&
Expand Down

0 comments on commit a81a992

Please sign in to comment.