Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Support recursive analysis of CallExpr in MemberExpr #6

@fraxken

Description

@fraxken

The following code is not supported:

const aA = Function.prototype.call;
const bB = require;

const createHashBis = aA.call(bB, bB, "crypto").createHash;
console.log(createHashBis);

The issue is here:

aA.call(bB, bB, "crypto").createHash;

There is a mix between CallExpr and MemberExpr that make things hard to analyze.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requesthelp wantedExtra attention is needed

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions