We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a4863c commit 687a460Copy full SHA for 687a460
CHANGELOG.md
@@ -34,6 +34,18 @@
34
35
([Surya Rose](https://github.com/GearsDatapacks))
36
37
+- When matching the wrong number of subjects, the compiler now pinpoints the
38
+ error location instead of marking the entire branch.
39
+ ```
40
+ case wibble {
41
+ 0, _ -> 1
42
+ ^^^^ Expected 1 patterns, got 2
43
+ 0 | -> 1
44
+ ^ I was expecting a pattern after this
45
+ }
46
47
+ ([fruno](https://github.com/fruno-bulax/))
48
+
49
- The performance of `==` and `!=` has been improved for single-variant custom
50
types when compiling to JavaScript. This was done by generating comparison
51
code specific to the custom type rather than using the generic equality check
0 commit comments