<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
Dear Amber expert group,<br>
<br>
I have followed the discussion on primitive patterns and wish to
make a comment. The expert group is most certainty already aware of
the issue, but I don't know if it has been discussed enough and I
wish to draw attention to it.<br>
<br>
It seems to me that there are attractive aspects of the current
proposal in [1], in which a pattern match operation on integral
types perform a range check on its operand, so that `i instanceof
byte b` matches if `i` is in the range of a byte.<br>
<br>
However, I think the following is a problematic aspect of this
model: There is no syntactic difference between a pattern that
perform only a variable binding, and a pattern that performs a range
check.<br>
<br>
For example, the following pattern perform a range check if the
record component is declared to be `long` but not otherwise:<br>
<br>
```<br>
switch (o) {<br>
case SomeRecord(int i) -> System.out.println("Match");<br>
...<br>
}<br>
```<br>
<br>
This has the following consequences: <br>
<br>
* When writing the pattern it's easy to make mistakes, forgetting to
check the type of the record component, and out of habit declare the
type in the pattern as `int`. If the record happens to contain a
`long` this become a range check by mistake. This will often not be
caught by the compiler and the pattern will simply not match in
unexpected ways.<br>
<br>
* When updating the type of the record component, for example from
`int` to `long`, it is easy to forget that this might change
patterns. Patterns that previously only performed a variable binding
now makes a range check. This will often not be caught by the
compiler.<br>
<br>
Admittedly, this situation is similar to how type patterns and
sub-classing work already. But I think the problem with integral
primitive types is worse, because it is more implicit and easier for
programmers to forget about.<br>
<br>
This problem is also somewhat similar to how total patterns accepts
null while non-total patterns rejects null.<br>
<br>
I think these kinds of semantic differences between similar-looking
constructs is something to be very wary about in programming
languages!<br>
<br>
Possible solutions: <br>
<br>
* Only allow simple variable bindings in type patterns for integral
types. Don't do range checking in patterns at all. (To me this seems
like the best approach.)<br>
<br>
* Find an alternative syntax for patterns that perform range checks.
(This is related to a suggestion from Tagir Valeev to this list on
2022-11-16 17:50.)<br>
<br>
Thank you, expert group, for your good work! It it truly a treat for
a language enthusiast to be able to follow your discussions on these
lists.<br>
<br>
<font size="2">Best regards,<br>
</font>Jens Lideström<br>
<br>
[1]: <a class="moz-txt-link-freetext" href="https://bugs.openjdk.org/browse/JDK-8288476">https://bugs.openjdk.org/browse/JDK-8288476</a><br>
<div class="ContentPasted0"><br>
</div>
</body>
</html>