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 29 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 3064x 3064x 24x 24x 22x 22x 3064x 76x 76x 74x 74x 74x 13x 13x 74x 76x 3029x 3029x 3029x | /** @import { MemberExpression } from 'estree' */ /** @import { Context } from '../types' */ import * as b from '../../../../utils/builders.js'; /** * @param {MemberExpression} node * @param {Context} context */ export function MemberExpression(node, context) { // rewrite `this.#foo` as `this.#foo.v` inside a constructor if (node.property.type === 'PrivateIdentifier') { const field = context.state.private_state.get(node.property.name); if (field) { return context.state.in_constructor ? b.member(node, b.id('v')) : b.call('$.get', node); } } else if (node.object.type === 'ThisExpression') { // rewrite `this.foo` as `this.#foo.v` inside a constructor if (node.property.type === 'Identifier' && !node.computed) { const field = context.state.public_state.get(node.property.name); if (field && context.state.in_constructor) { return b.member(b.member(b.this, field.id), b.id('v')); } } } context.next(); } |