google / tern-closure

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

Expose type nullability information #17

Open jgiles opened 10 years ago

jgiles commented 10 years ago

Example:

/** @type {?string} */
var nullable;
nullable;//: ?string

/** @type {!MyClass} */
var nonNullable;
nonNullable;//: !MyClass