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 6565 - Fix: do ` let f = (x, ~z) => x + z; f(1, ~z=2) ` instead
6666- Externals without ` @val ` annotations do not work anymore, and externals with ` = "" ` give an error.
6767 - 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.
7171- Strings processed at compile-time don't need escaping anymore.
7272 - Example: ` let blockCommentsRe = %re("/\\/\\*([^*]|[\\r\\n]|(\\*+([^*/]|[\\r\\n])))*\\*+\\//g") ` .
7373 - Fix: use ` let blockCommentsRe = %re("/\/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\//g") ` instead.
You can’t perform that action at this time.
0 commit comments