File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 65
65
- Fix: do ` let f = (x, ~z) => x + z; f(1, ~z=2) ` instead
66
66
- Externals without ` @val ` annotations do not work anymore, and externals with ` = "" ` give an error.
67
67
- Example: ` external setTimeout: (unit => unit, int) => float = "setTimeout" ` is not supported anymore.
68
- - Fix: use ` [ @val] external setTimeout: (unit => unit, int) => float = "setTimeout"` instead.
69
- - Example2: ` [ @val] external setTimeout: (unit => unit, int) => float = ""` is not supported anymore.
70
- - Fix2: use ` [ @val] external setTimeout: (unit => unit, int) => float = "setTimeout"` instead.
68
+ - Fix: use ` @val external setTimeout: (unit => unit, int) => float = "setTimeout" ` instead.
69
+ - Example2: ` @val external setTimeout: (unit => unit, int) => float = "" ` is not supported anymore.
70
+ - Fix2: use ` @val external setTimeout: (unit => unit, int) => float = "setTimeout" ` instead.
71
71
- Strings processed at compile-time don't need escaping anymore.
72
72
- Example: ` let blockCommentsRe = %re("/\\/\\*([^*]|[\\r\\n]|(\\*+([^*/]|[\\r\\n])))*\\*+\\//g") ` .
73
73
- Fix: use ` let blockCommentsRe = %re("/\/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\//g") ` instead.
You can’t perform that action at this time.
0 commit comments