mirror of
https://github.com/github/codeql.git
synced 2026-04-17 21:14:02 +02:00
272 B
272 B
category
| category |
|---|
| majorAnalysis |
- Flow through
initializeconstructors is now taken into account. For example, in
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.