All files / src/compiler/phases/3-transform/server/visitors MemberExpression.js

100% Statements 20/20
100% Branches 5/5
100% Functions 1/1
100% Lines 19/19

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 202x 2x 2x 2x 2x 2x 2x 2x 2x 425x 27x 27x 27x 1x 1x 27x 424x 424x 424x  
/** @import { MemberExpression } from 'estree' */
/** @import { Context } from '../types.js' */
import * as b from '../../../../utils/builders.js';
 
/**
 * @param {MemberExpression} node
 * @param {Context} context
 */
export function MemberExpressionRunes(node, context) {
	if (node.object.type === 'ThisExpression' && node.property.type === 'PrivateIdentifier') {
		const field = context.state.private_derived.get(node.property.name);
 
		if (field) {
			return b.call(node);
		}
	}
 
	context.next();
}