| Summary: | function with @param {boolean} in jsdoc missing in content assist | ||
|---|---|---|---|
| Product: | [WebTools] JSDT | Reporter: | Jacek Pospychala <jacek.pospychala> |
| Component: | General | Assignee: | Project Inbox <jsdt.javascript-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | Nitin Dahyabhai <thatnitind> |
| Severity: | normal | ||
| Priority: | P3 | CC: | cmjaun |
| Version: | 3.2 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
*** This bug has been marked as a duplicate of bug 278172 *** |
Build id: 3.6M7 Using @param {boolean}, instead of {Boolean} in function jsdoc causes that it's missing from content assist. Altough it's still displayed eg in outline. case 1: /** * @param {Boolean} options (optional) * @member Ext */ Ext.onReady = function (options){ }; Ext.| <--- press Ctrl+Space here. Note that onReady appears on the list case 2: /** * @param {boolean} options (optional) * @member Ext */ Ext.onReady = function (options){ }; Ext.| <--- press Ctrl+Space here. Note that onReady doesn't appear on the list