All files / src/compiler/phases/2-analyze/visitors AssignmentExpression.js

100% Statements 18/18
100% Branches 2/2
100% Functions 1/1
100% Lines 17/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 182x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2301x 2301x 2301x 2301x 2289x 2289x 2289x  
/** @import { AssignmentExpression } from 'estree' */
/** @import { SvelteNode } from '#compiler' */
/** @import { Context } from '../types' */
import { validate_assignment } from './shared/utils.js';
 
/**
 * @param {AssignmentExpression} node
 * @param {Context} context
 */
export function AssignmentExpression(node, context) {
	const parent = /** @type {SvelteNode} */ (context.path.at(-1));
	if (parent.type !== 'ConstTag') {
		validate_assignment(node, node.left, context.state);
	}
 
	context.next();
}