ctsk b400c6b4ef [jlox] Add Resolution and Binding
A very subtle bug: The resolution relies on the fact that Java has a
concept of object identity: Even when the "Contents" of two objects are
equal, those objects are not considered equal.

This does not hold for records:
```
record Test(int val) {}

var a = new Test(1);
var b = new Test(1);

var m = new HashMap<>();
m.put(a, "Hello");
m.get(b); // returns "Hello"
```

tl;dr - got bitten by trying to do things fancy
2022-09-14 20:45:54 +02:00
2022-09-02 21:57:44 +02:00
2022-09-14 20:45:54 +02:00
2022-09-02 22:08:24 +02:00
2022-08-31 21:21:03 +02:00
Description
No description provided
292 KiB
Languages
Java 54.9%
Rust 41.5%
ANTLR 2%
C 1%
Nix 0.4%
Other 0.2%