mirror of
https://github.com/github/codeql.git
synced 2026-05-08 15:11:36 +02: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(); }