Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
Apache FlexJS 0.5.0
-
None
Description
When /** test */ is used on a single line to comment a public AS function, invalid JS output will be generated.
AS input:
package foo.bar { public class TestComment { /** test */ public function test():void { } } }
JS output (relevant part only):
/** test */
* @export
*/
foo.bar.TestComment.prototype.test = function() {
};