google / tern-closure

A Tern plugin adding Closure support.
Apache License 2.0
32 stars 18 forks source link

Support generics #24

Open jgiles opened 10 years ago

jgiles commented 10 years ago

The Closure compiler supports generics, like

/**
 * @constructor
 * @template T
 */
Foo = function() { ... };

A good experience with generics might require support for casting (#12), but we might get things working decently without it.

At a minimum, we should stop trying and failing to find and import the files providing template types.