tree-sitter-stack-graphs-javascript 0.3.0

Stack graphs definition for JavaScript using tree-sitter-javascript
Documentation
function foo() {
    this.x = 1;
}

let obj = new foo();

obj.x;
//  ^ defined: 2



function bar(y) {
    this.z = y;
}

let obj_2 = new bar({
    w: 1
});

obj_2.z.w;
//      ^ defined: 17
//    ^ defined: 12, 13