asdoc

Using ASDoc with Bindable metatag and mxml

瘦欲@ 提交于 2020-01-04 05:24:33
问题 I am creating the documentation of my flex project using ASDoc and having some issues with the bindable metatag. ASDoc doesn't document public Bindable values unless the Bindable tag has an event name associated with it. For example: //This is documented correctly [Bindable("someEvent")] /* * public bindable with event name * */ public var test1:String; //This is not documented at all [Bindable] /* * public bindable without event name * */ public var test2:String; ASDoc prepends random

Adobe ASC 2.0 and ASDoc

 ̄綄美尐妖づ 提交于 2019-12-24 08:16:04
问题 After upgrading to the AIR 3.6 SDK which uses the new ASC 2.0 compiler all the ASDoc tasks in my Ant build files fail. I'm getting the error: BUILD FAILED E:\Projects\Eclipse\project\build\build_swc.xml:51: The following error occurred while executing this line: E:\Projects\Eclipse\projectbuild\build_swc.xml:209: Problem: failed to create task or type asdoc Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been declared. Action: Check

Include @ in ASDoc comments without any errors?

谁说胖子不能爱 提交于 2019-12-13 02:13:02
问题 If you have the @ symbol in your ASDoc, the code will compile, but the generator for the ASDoc will yell out an unintelligible error message. /** * Removes the following characters which are forbidden: * @/\"#$%&'()*:;<=>!? */ public function removeForbiddenChars(str:String):String Is there any way to include the @ symbol in your ASDoc without an error being thrown? 回答1: According to documentation by Adobe: ASDoc passes all HTML tags and tag entities in a comment to the output. Therefore, if