UNPKG

svelte

Version:

Cybernetically enhanced web apps

31 lines (24 loc) 939 B
/** @import { Expression, ExpressionStatement } from 'estree' */ /** @import { ComponentContext } from '../types' */ import * as b from '../../../../utils/builders.js'; import { get_rune } from '../../../scope.js'; /** * @param {ExpressionStatement} node * @param {ComponentContext} context */ export function ExpressionStatement(node, context) { if (node.expression.type === 'CallExpression') { const rune = get_rune(node.expression, context.state.scope); if (rune === '$effect' || rune === '$effect.pre') { const callee = rune === '$effect' ? '$.user_effect' : '$.user_pre_effect'; const func = /** @type {Expression} */ (context.visit(node.expression.arguments[0])); const expr = b.call(callee, /** @type {Expression} */ (func)); expr.callee.loc = node.expression.callee.loc; // ensure correct mapping return b.stmt(expr); } if (rune === '$inspect.trace') { return b.empty; } } context.next(); }