File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 37
37
- Fix printer removing private for empty record. https://github.com/rescript-lang/rescript/pull/7448
38
38
- Fix: handle dynamic imports with module aliases. https://github.com/rescript-lang/rescript/pull/7452
39
39
- Fix missing unescaping when accessing prop with exotic name. https://github.com/rescript-lang/rescript/pull/7469
40
+ - Fix syntax error with mutable nested record. https://github.com/rescript-lang/rescript/pull/7470
40
41
41
42
#### :house : Internal
42
43
Original file line number Diff line number Diff line change
1
+ type foo = {bar : int }
2
+
3
+ type a = {
4
+ k : {"x" : int },
5
+ mutable f : int ,
6
+ g : {
7
+ @as ("ad" ) g1 : int ,
8
+ mutable g2 : int
9
+ }
10
+ }
11
+
12
+ type b = {
13
+ ... foo ,
14
+ mutable f : int ,
15
+ g : string
16
+ }
You can’t perform that action at this time.
0 commit comments