tern
tern copied to clipboard
A JavaScript code analyzer for deep, cross-editor language support
Let's assume that we have following example: ``` //test.js new Foo.A(); new Foo.B(); //a.js Foo.A = function () { }; //b.js Foo.B = function () { }; //c.js var Foo...
Using tern-autocomplete on dot leaves emacs in an unresponsive state forever. I have to kill emacs from command line. Scenario: * Using latest emacs `25.2` from here: https://emacsformacosx.com/ * OSX...
Hi, We use tern for our project a I get error when tern parse our javascript file with object: `{'0': 'data'}`. TypeError: str.charCodeAt is not a function at isInteger (tern\lib\infer.js:536:15)...
Found in Orion bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=520955 and reproducible in the Tern demo, if you enter ````window.ope```` and try to complete it, you only get ````opener````
Jump to definition through the middle file doesn't work properly. You could check it by changing the demo like this ```javascript /* middleList.js */ export * from './list'; ``` ```javascript...
## To reproduce *.tern-config ``` { "plugins": { "node_resolve": {}, "es_modules": {}, "modules": {} } } ``` * Navigate in vim to a moderately-parenthesized statement nested inside an object in...
Right now term supports passing the `configPath` and the `modules` options to the webpack plugin. As it so happens, webpack 2 natively supports configs to be written using ES6 modules...
Without `"dontLoad": "node_modules"` sublime beachballs indefinitely. Wouldn't it be a good idea to add this to the default options?
Apple.js ``` var apple = (function () { return { init : function() { } }; })(); ``` AppleEater.js ``` //cant navigate from AppleEater.js to Apple.js, when either clicked on...
**JS:** Ecma 2016. Actual -------- In code completion (I tried both eclipse plugin and atom ones) I able to see base class' constructor args, but not child. Child class is...