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
constStringTYPE_NICE="nice";
constStringTYPE_VERY_NICE="very_nice";
/// Main function uses [TYPE_NICE] and [TYPE_VERY_NICE].main(List<String> args) {
}
Then there is a problem with constant of a name TYPE_VERY_NICE. I found out that the reason is that when I use more than one underscore, the constant is written with brackets.
Output of the comment in the documentation looks like this:
Main function uses TYPE_NICE and [TYPE_VERY_NICE].
To see it you need to go to the detail of the function in the documentation.
The text was updated successfully, but these errors were encountered:
sethladd
added
type-bug
Incorrect behavior (everything from a crash to more subtle misbehavior)
P1
A high priority bug; for example, a single project is unusable or has many test failures
labels
Jul 23, 2015
This is probably due to the markdown parser being run first and interpreting the name as TYPEVERYNICE, or something in that vein.
sethladd
added
P2
A bug or feature request we're likely to work on
and removed
P1
A high priority bug; for example, a single project is unusable or has many test failures
labels
Jul 27, 2015
When I generate the documentation for a script:
Then there is a problem with constant of a name
TYPE_VERY_NICE
. I found out that the reason is that when I use more than one underscore, the constant is written with brackets.Output of the comment in the documentation looks like this:
Main function uses TYPE_NICE and [TYPE_VERY_NICE].
To see it you need to go to the detail of the function in the documentation.
Same problem with the old docgen: dart-lang/sdk#23883
The text was updated successfully, but these errors were encountered: