tree-sitter-stack-graphs-javascript 0.3.0

Stack graphs definition for JavaScript using tree-sitter-javascript
Documentation
function* f() {
    let x = 1;

    // Flow in

    yield x;
    //    ^ defined: 2

    // Flow out

    yield y = 1;

    /**/ y;
    //   ^ defined: 11

    // Flow around

    /**/ x;
    //   ^ defined: 2
}