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 18 | 2x 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(); } |