escope
escope copied to clipboard
Escope: ECMAScript scope analyzer
It turns out to be 404 error when I was trying to access JSDoc on https://constellation.slowstart.org/escope/. Are there other ways that I can use to get documentation?
This is just the upstream forwarding of a patch included with the Debian package of node-escope. It update the .babelrc file to build the package with babel 7 by using...
A few disclaimers: 1. This has not yet been manually tested to ensure builds still working with older versions. 2. ~I'm also not fully sure whether my `browserify` script replacement...
This makes it easier to grab using tools like `yarn licenses generate-disclaimer`.
The first 3 commits bring this repo up-to-date: * require-dir is broken with node 8 -> update gulp-git * node LTS minimium is 4 -> adjust travis * `({a}) =...
Hi, I am writing a [plugin](https://github.com/vincentdchan/webpack-deep-scope-analysis-plugin) for webpack to do deep socpe analysis. I modified `escope` and wrapped it into Typescript. just see [src/](https://github.com/vincentdchan/webpack-deep-scope-analysis-plugin/tree/master/src) There are several difference: - TypeScript...
Apologies if this is a known problem. I couldn't quite tell from my review of existing issue threads. My problem is related to the scopes set up by this code:...
is it a bug ? 

Say we have the following code: ``` { function aa() { } var zz; } function bb() { } ``` which produces the following scope tree: ``` 0: GlobalScope 1:...