tern icon indicating copy to clipboard operation
tern copied to clipboard

A JavaScript code analyzer for deep, cross-editor language support

Results 105 tern issues
Sort by recently updated
recently updated
newest added
trafficstars

So, I'm not *entirely* sure, but it looks like perhaps `create-react-app`'s `react-scripts`' Webpack config is doing something a little more complicated than Tern's Webpack plugin can understand? Here's the `.tern-project`...

Hi forks, I am a game developer woking in the cocos-js (https://github.com/cocos2d/cocos2d-js), I try to use vim along with tern for the project. I followed the tern document (http://ternjs.net/) and...

When I use `export const var1 = 'a'` or `export { var1 }` can't find using `tern-find-definition` It works fine finding other type of exports. I'm using latest version of...

I found that function declarations in a file are not hoisted when an effect is executed. For the following file: ``` foo(id) function id(x) { return x; } ``` And...

Does any known implementation of TERN communicating with client via LSP protocol exists? Currently, SAP WebIDE uses Orion libraries from Scripted editor to provide Javascript code assistance but this is...

Supposing I have the next JSON types definition file: ``` { "!name": "my", "my": { "myfunc" : { "!type" : "fn(data:+my.charts.Pie|+my.charts.Area) -> +my.charts.Pie|+my.charts.Area", "!doc" : "Creates and returns a Pie...

Hello, I'm really liking the TernJS experience with Neovim+Deoplete. One feature which is common in most command-line programs is the ability to manually specify the path to the program's config...

I had a webpack configuration where modules.js was resolving node_modules/foo when I wanted my webpack.config.js to be resolved instead. In order to enforce the correct order, I changed the resolve...

Hi, How can I jump to a locale file definition (with correct line) in sublime[(tern_for_sublime)](https://github.com/ternjs/tern_for_sublime)? My tern definition.json looks like this: ``` { "!name": "mylib", "Foo": { "Bar": { "!type":...

Objects created from a class do have all variables defined in the constructor and inside other member functions. When you extend that class, objects created from the extended class do...