mirror of
https://github.com/github/codeql.git
synced 2026-07-12 23:15:40 +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(); }