File tree Expand file tree Collapse file tree 2 files changed +18
-18
lines changed Expand file tree Collapse file tree 2 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 2
2
3
3
### Major Analysis Improvements
4
4
5
- * Flow through ` initialize ` constructors is now taken into account. For example, in
6
- ``` rb
7
- class C
8
- def initialize (x )
9
- @field = x
5
+ * Flow through ` initialize ` constructors is now taken into account. For example, in
6
+ ``` rb
7
+ class C
8
+ def initialize (x )
9
+ @field = x
10
+ end
10
11
end
11
- end
12
12
13
- C .new (y)
14
- ```
15
- there will be flow from ` y ` to the field ` @field ` on the constructed ` C ` object.
13
+ C .new (y)
14
+ ```
15
+ there will be flow from ` y ` to the field ` @field ` on the constructed ` C ` object.
16
16
17
17
### Minor Analysis Improvements
18
18
Original file line number Diff line number Diff line change 2
2
3
3
### Major Analysis Improvements
4
4
5
- * Flow through ` initialize ` constructors is now taken into account. For example, in
6
- ``` rb
7
- class C
8
- def initialize (x )
9
- @field = x
5
+ * Flow through ` initialize ` constructors is now taken into account. For example, in
6
+ ``` rb
7
+ class C
8
+ def initialize (x )
9
+ @field = x
10
+ end
10
11
end
11
- end
12
12
13
- C .new (y)
14
- ```
15
- there will be flow from ` y ` to the field ` @field ` on the constructed ` C ` object.
13
+ C .new (y)
14
+ ```
15
+ there will be flow from ` y ` to the field ` @field ` on the constructed ` C ` object.
16
16
17
17
### Minor Analysis Improvements
18
18
You can’t perform that action at this time.
0 commit comments