cannot get the comments to show in actionscript file when running asdoc.. is this a known bug?

[Bindable]
/** test comment */
public var currentSearchTextValue:String;

does not show anything in the generated documentation... am I doing something wrong?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 1 down vote accepted

[Bindable] actually generates code that wraps the property, so it might not be possible. Try moving [Bindable] to after your comments, but failing that you might be out of luck I'm afraid.

link|improve this answer
feedback

Although I don't see anything wrong here, I would follow the ASDOC best practices - putting the comments in separate line with a preceding asterisk as suggested here and see if that works.

[Bindable]
/**
* Test comment
*/
public var currentSearchTextValue:String;
link|improve this answer
doesn't work either, I believe it is related to the "[Bindable]" tag. When I remove it, it works properly – Aaron Saunders Jul 29 '09 at 0:46
Did you try to set [Bindable] after comments? – zdmytriv Jul 29 '09 at 3:08
feedback

I am having the same issue and have posted a detailed question here. no answers yet.

One workaround is to use an event name along with the Bindable tag

[Bindable("someEvent")]
/*
* asdoc comment
* */
public var currentSearchTextValue:String;

but this wud require u to dispatch "someEvent" manually to get binding work. So u might wanna use this for generating asdoc alone and change it back to the older version afterwards.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.