You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fails:Pattern matching guards makes bound variables visible in guard
73
+
fails:Pattern matching guards does not evaluate guard if pattern does not match
74
+
fails:Pattern matching guards takes guards into account when there are several matching patterns
75
+
fails:Pattern matching guards executes else clause if no guarded pattern matches
76
+
fails:Pattern matching guards raises NoMatchingPatternError if no guarded pattern matches and no else clause
77
+
fails:Pattern matching value pattern matches an object such that pattern === object
78
+
fails:Pattern matching value pattern allows string literal with interpolation
79
+
fails:Pattern matching variable pattern matches a value and binds variable name to this value
80
+
fails:Pattern matching variable pattern makes bounded variable visible outside a case statement scope
81
+
fails:Pattern matching variable pattern create local variables even if a pattern doesn't match
82
+
fails:Pattern matching variable pattern allow using _ name to drop values
83
+
fails:Pattern matching variable pattern supports using _ in a pattern several times
84
+
fails:Pattern matching variable pattern does not support using variable name (except _) several times
85
+
fails:Pattern matching Array pattern supports form Constant[pat, pat, ...]
86
+
fails:Pattern matching Array pattern supports form [pat, pat, ...]
87
+
fails:Pattern matching Array pattern supports form pat, pat, ...
88
+
fails:Pattern matching Array pattern matches an object with #deconstruct method which returns an array and each element in array matches element in pattern
89
+
fails:Pattern matching Array pattern calls #deconstruct even on objects that are already an array
90
+
fails:Pattern matching Array pattern does not match object if Constant === object returns false
91
+
fails:Pattern matching Array pattern does not match object without #deconstruct method
92
+
fails:Pattern matching Array pattern raises TypeError if #deconstruct method does not return array
93
+
fails:Pattern matching Array pattern does not match object if elements of array returned by #deconstruct method does not match elements in pattern
0 commit comments