Skip to content

[Bug] Handle separated declaration and assignment #41

@Semnodime

Description

@Semnodime
var foo;
foo = [42];
console.log(foo[0]);

should be handled identically with

var foo = [42];
console.log(foo[0]);

and be deobfuscated to

console.log(42);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions