fix(compiler-sfc): should also expose regular script block bindings when <script setup>
is used
close #4369
This commit is contained in:
parent
e22d7cdb08
commit
872b3f7ec5
@ -610,10 +610,15 @@ export default {
|
|||||||
function c() {}
|
function c() {}
|
||||||
class d {}
|
class d {}
|
||||||
|
|
||||||
return { a, b, c, d, x }
|
return { aa, bb, cc, dd, a, b, c, d, xx, x }
|
||||||
}
|
}
|
||||||
|
|
||||||
}"
|
}
|
||||||
|
import { xx } from './x'
|
||||||
|
let aa = 1
|
||||||
|
const bb = 2
|
||||||
|
function cc() {}
|
||||||
|
class dd {}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`SFC compile <script setup> with TypeScript const Enum 1`] = `
|
exports[`SFC compile <script setup> with TypeScript const Enum 1`] = `
|
||||||
|
@ -3,7 +3,7 @@ import { compileSFCScript as compile, assertCode } from './utils'
|
|||||||
|
|
||||||
describe('SFC compile <script setup>', () => {
|
describe('SFC compile <script setup>', () => {
|
||||||
test('should expose top level declarations', () => {
|
test('should expose top level declarations', () => {
|
||||||
const { content } = compile(`
|
const { content, bindings } = compile(`
|
||||||
<script setup>
|
<script setup>
|
||||||
import { x } from './x'
|
import { x } from './x'
|
||||||
let a = 1
|
let a = 1
|
||||||
@ -11,9 +11,29 @@ describe('SFC compile <script setup>', () => {
|
|||||||
function c() {}
|
function c() {}
|
||||||
class d {}
|
class d {}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { xx } from './x'
|
||||||
|
let aa = 1
|
||||||
|
const bb = 2
|
||||||
|
function cc() {}
|
||||||
|
class dd {}
|
||||||
|
</script>
|
||||||
`)
|
`)
|
||||||
|
expect(content).toMatch('return { aa, bb, cc, dd, a, b, c, d, xx, x }')
|
||||||
|
expect(bindings).toStrictEqual({
|
||||||
|
x: BindingTypes.SETUP_MAYBE_REF,
|
||||||
|
a: BindingTypes.SETUP_LET,
|
||||||
|
b: BindingTypes.SETUP_CONST,
|
||||||
|
c: BindingTypes.SETUP_CONST,
|
||||||
|
d: BindingTypes.SETUP_CONST,
|
||||||
|
xx: BindingTypes.SETUP_MAYBE_REF,
|
||||||
|
aa: BindingTypes.SETUP_LET,
|
||||||
|
bb: BindingTypes.SETUP_CONST,
|
||||||
|
cc: BindingTypes.SETUP_CONST,
|
||||||
|
dd: BindingTypes.SETUP_CONST
|
||||||
|
})
|
||||||
assertCode(content)
|
assertCode(content)
|
||||||
expect(content).toMatch('return { a, b, c, d, x }')
|
|
||||||
})
|
})
|
||||||
|
|
||||||
test('defineProps()', () => {
|
test('defineProps()', () => {
|
||||||
|
@ -827,6 +827,13 @@ export function compileScript(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (
|
||||||
|
(node.type === 'VariableDeclaration' ||
|
||||||
|
node.type === 'FunctionDeclaration' ||
|
||||||
|
node.type === 'ClassDeclaration') &&
|
||||||
|
!node.declare
|
||||||
|
) {
|
||||||
|
walkDeclaration(node, setupBindings, userImportAlias)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user