| JSDT "Open Declaration" NOT WORKING for JsDoc "hints". OK if type is inferred. A [message #895658] |
Sat, 14 July 2012 06:03  |
Alexandru Cristu Messages: 3 Registered: July 2012 |
Junior Member |
|
|
Hello,
Please see the 2 simple js sources below.
While editing tmp2.js, autocomplete works for both parameter p and for "new F()".
However "Open Declaration" does not work for parameter p, while it works as expected for "new F()".
Please advice!
/// tmp1.js ////////////////////////////////////////
function F() {
this.method = function () {
};
this.meth2 = function () {};
}
/// tmp2.js ////////////////////////////////////////
/**
* @param {F} p
*/
function b(p) {
p.meth2();
new F().msethod();
}
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.01572 seconds