-
Notifications
You must be signed in to change notification settings - Fork 27
Closed
Labels
cat:langCategory: Language designCategory: Language designcmp:compilerComponent: Compiler backend (e.g., annotation processors, code generators)Component: Compiler backend (e.g., annotation processors, code generators)typ:enhanceType: Enhancement/new featureType: Enhancement/new feature
Description
When I want to add some comment about rectangle,
union shape
= rectangle (point upper-left, point lower-right)
# Information about a rectangle
| circle (point origin, offset radius)
;
expected postion should be
union shape
= rectangle (
# Information about a rectangle
point upper-left,
point lower-right
)
| circle (point origin, offset radius)
;
but I have to add it like below.
union shape
= rectangle (point upper-left, point lower-right)
# Information about a rectangle
| circle (point origin, offset radius)
;
Metadata
Metadata
Assignees
Labels
cat:langCategory: Language designCategory: Language designcmp:compilerComponent: Compiler backend (e.g., annotation processors, code generators)Component: Compiler backend (e.g., annotation processors, code generators)typ:enhanceType: Enhancement/new featureType: Enhancement/new feature