You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
The same example from the Wiki pages:
/** * Change the role of the employee.
* @param {integer} employeeId The id of the employee.
* @param {string} [newRole] The new role of the employee.
*/
function recast(employeeId, newRole) {}
What is the expected output? What do you see instead?
newRole parameter should be optional, instead there is no isOptional
attribute in the xml
What version of the product are you using? On what operating system?
1.2.1
Please provide any additional information below.
Original issue reported on code.google.com by herz...@gmail.com on 29 Aug 2007 at 8:59
The text was updated successfully, but these errors were encountered:
I can't reproduce this in version 1.3.0. I get the expected...
<params>
<param>
<type>integer</type>
<name>employeeId</name>
<desc>The id of the employee.</desc>
<optional>false</optional>
</param>
<param>
<type>string</type>
<name>newRole</name>
<desc>The new role of the employee.</desc>
<optional>true</optional>
</param>
</params>
Can you send me more information (email me directly if necessary): the source
file,
the exact output, the exact commandline you are using?
Original comment by micmath on 29 Aug 2007 at 11:02
Original issue reported on code.google.com by
herz...@gmail.com
on 29 Aug 2007 at 8:59The text was updated successfully, but these errors were encountered: