MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / MemberExpression

Function MemberExpression

tools/acorn-optimizer.mjs:343–349  ·  view source on GitHub ↗
(node, c)

Source from the content-addressed store, hash-verified

341 });
342 },
343 MemberExpression(node, c) {
344 c(node.object);
345 // Ignore a property identifier (a.X), but notice a[X] (computed props).
346 if (node.computed) {
347 c(node.property);
348 }
349 },
350 FunctionDeclaration(node, c) {
351 handleFunction(node, c, true /* defun */);
352 },

Callers

nothing calls this directly

Calls 10

isHEAPAccessFunction · 0.85
isGrowHEAPAccessFunction · 0.85
makeCallExpressionFunction · 0.85
makeSequenceFunction · 0.85
makeCallGrowMemViewsFunction · 0.85
asanifyTransformFunction · 0.85
safeHeapTransformFunction · 0.85
multiplyFunction · 0.70
cFunction · 0.50
addMethod · 0.45

Tested by

no test coverage detected