Skip to content

Commit c04b90b

Browse files
committed
Add change note
1 parent 5d9c64b commit c04b90b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
category: majorAnalysis
3+
---
4+
* Flow through `initialize` constructors is now taken into account. For example, in
5+
```rb
6+
class C
7+
def initialize(x)
8+
@field = x
9+
end
10+
end
11+
12+
C.new(y)
13+
```
14+
there will be flow from `y` to the field `@field` on the constructed `C` object.

0 commit comments

Comments
 (0)