fix: tighten up `export default` validation (#14368)

through #14363 I noticed our `export default` validation wasn't quite right:
- missed checking for derived/state exports
- the "cannot have a default export" error was only thrown if you did `export default` from the instance script, but it shouldn't matter from which component part you export it; it's never ok
pull/14366/head
Simon H 1 month ago committed by GitHub
parent 4c98c2e4a6
commit 4dfa0e31fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
'svelte': patch
---
fix: tighten up `export default` validation

@ -1,13 +1,18 @@
/** @import { ExportDefaultDeclaration, Node } from 'estree' */
/** @import { ExportDefaultDeclaration } from 'estree' */
/** @import { Context } from '../types' */
import * as e from '../../../errors.js';
import { validate_export } from './shared/utils.js';
/**
* @param {ExportDefaultDeclaration} node
* @param {Context} context
*/
export function ExportDefaultDeclaration(node, context) {
if (context.state.ast_type === 'instance') {
if (!context.state.ast_type /* .svelte.js module */) {
if (node.declaration.type === 'Identifier') {
validate_export(node, context.state.scope, node.declaration.name);
}
} else {
e.module_illegal_default_export(node);
}

@ -1,8 +1,6 @@
/** @import { ExportSpecifier, Node } from 'estree' */
/** @import { Binding } from '#compiler' */
/** @import { ExportSpecifier } from 'estree' */
/** @import { Context } from '../types' */
/** @import { Scope } from '../../scope' */
import * as e from '../../../errors.js';
import { validate_export } from './shared/utils.js';
/**
* @param {ExportSpecifier} node
@ -30,22 +28,3 @@ export function ExportSpecifier(node, context) {
validate_export(node, context.state.scope, local_name);
}
}
/**
*
* @param {Node} node
* @param {Scope} scope
* @param {string} name
*/
function validate_export(node, scope, name) {
const binding = scope.get(name);
if (!binding) return;
if (binding.kind === 'derived') {
e.derived_invalid_export(node);
}
if ((binding.kind === 'state' || binding.kind === 'raw_state') && binding.reassigned) {
e.state_invalid_export(node);
}
}

@ -1,4 +1,4 @@
/** @import { AssignmentExpression, Expression, Literal, Pattern, PrivateIdentifier, Super, UpdateExpression, VariableDeclarator } from 'estree' */
/** @import { AssignmentExpression, Expression, Literal, Node, Pattern, PrivateIdentifier, Super, UpdateExpression, VariableDeclarator } from 'estree' */
/** @import { AST, Binding } from '#compiler' */
/** @import { AnalysisState, Context } from '../../types' */
/** @import { Scope } from '../../../scope' */
@ -263,3 +263,22 @@ export function validate_identifier_name(binding, function_depth) {
}
}
}
/**
* Checks that the exported name is not a derived or reassigned state variable.
* @param {Node} node
* @param {Scope} scope
* @param {string} name
*/
export function validate_export(node, scope, name) {
const binding = scope.get(name);
if (!binding) return;
if (binding.kind === 'derived') {
e.derived_invalid_export(node);
}
if ((binding.kind === 'state' || binding.kind === 'raw_state') && binding.reassigned) {
e.state_invalid_export(node);
}
}

@ -0,0 +1,10 @@
import { test } from '../../test';
export default test({
error: {
code: 'derived_invalid_export',
message:
'Cannot export derived state from a module. To expose the current derived value, export a function returning its value',
position: [61, 83]
}
});

@ -0,0 +1,5 @@
let count = $state(0);
const double = $derived(count * 2);
export default double;

@ -0,0 +1,10 @@
import { test } from '../../test';
export default test({
error: {
code: 'state_invalid_export',
message:
"Cannot export state from a module if it is reassigned. Either export a function returning the state value or only mutate the state value's properties",
position: [93, 118]
}
});

@ -0,0 +1,7 @@
let primitive = $state('nope');
export function update_primitive() {
primitive = 'yep';
}
export default primitive;

@ -0,0 +1,14 @@
[
{
"code": "module_illegal_default_export",
"message": "A component cannot have a default export",
"start": {
"line": 2,
"column": 1
},
"end": {
"line": 2,
"column": 19
}
}
]

@ -0,0 +1,3 @@
<script module>
export default 42;
</script>
Loading…
Cancel
Save