mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
This allows a member initializer list to be seen as a sequence of field
assignments. For example, the constructor
C() : a(taint()) { }
now has data flow similar to
C() { this.a = taint(); }