Add change note

This commit is contained in:
Tom Hvitved
2022-12-14 16:29:49 +01:00
parent 5d9c64ba6f
commit c04b90bc6b

View File

@@ -0,0 +1,14 @@
---
category: majorAnalysis
---
* Flow through `initialize` constructors is now taken into account. For example, in
```rb
class C
def initialize(x)
@field = x
end
end
C.new(y)
```
there will be flow from `y` to the field `@field` on the constructed `C` object.