File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 37
37
- Improve error message for pipe (` -> ` ) syntax. https://github.com/rescript-lang/rescript/pull/7520
38
38
- Improve a few error messages around various subtyping issues. https://github.com/rescript-lang/rescript/pull/7404
39
39
- In module declarations, accept the invalid syntax ` M = {...} ` and format it to ` M : {...} ` . https://github.com/rescript-lang/rescript/pull/7527
40
+ - Improve doc comment formatting to match the style of multiline comments. https://github.com/rescript-lang/rescript/pull/7529
40
41
41
42
#### :house : Internal
42
43
Original file line number Diff line number Diff line change
1
+ type rec expression =
2
+ | /** non-negative integer constant */ Numeral (float )
3
+ | /** Addition [e1 + e2] */ Plus (expression , expression )
4
+
5
+ /** doc comment */
6
+
7
+ // comment
8
+ let a = 1
You can’t perform that action at this time.
0 commit comments