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 19 20 21 22 23 24 25 26 27 28 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 96x 96x 96x 96x 250x 250x 250x 36x 250x 26x 26x 4x 4x 26x 250x 96x 96x 96x | /** @import { ClassBody } from 'estree' */ /** @import { Context } from '../types' */ import { get_rune } from '../../scope.js'; /** * @param {ClassBody} node * @param {Context} context */ export function ClassBody(node, context) { /** @type {string[]} */ const private_derived_state = []; for (const definition of node.body) { if ( definition.type === 'PropertyDefinition' && definition.key.type === 'PrivateIdentifier' && definition.value?.type === 'CallExpression' ) { const rune = get_rune(definition.value, context.state.scope); if (rune === '$derived' || rune === '$derived.by') { private_derived_state.push(definition.key.name); } } } context.next({ ...context.state, private_derived_state }); } |