Update base for Update on "[compiler] Fix for PropertyStore object effect"

Fix for the issue in the previous PR. Long-term the ideal thing would be to make InferMutableRanges smarter about Store effects, and recognize that they are also transitive mutations of whatever was captured into the object. So in the following:

```
const x = {y: {z: {}}};
x.y.z.key = value;
```

That the `PropertyStore z . 'key' = value` is a transitive mutation of x and all three object expressions (x, x.y, x.y.z).

But for now it's simpler to stick to the original idea of Store only counting if we know that the type is an object.

[ghstack-poisoned]
This commit is contained in:
Joe Savona
2025-05-28 17:38:18 -07:00
parent 898ffa1de8
commit 3b6219de2c

Diff Content Not Available