Files
codeql/ruby/ql/lib
Tom Hvitved a3a3b46d54 Data flow: Account for return nodes with multiple return kinds when restricting flow through
For example, flow out via parameters allows for return nodes with multiple
return kinds:

```csharp
void SetXOrY(C x, C y, bool b)
{
    C c = x;
    if (b)
        c = y;
    c.Field = taint; // post-update node for `c` has two return kinds
}
```
2022-11-20 10:18:46 +01:00
..
2022-11-16 13:46:51 +13:00
2021-10-15 11:47:28 +02:00
2022-08-25 17:21:29 +02:00
2022-09-14 15:30:51 +02:00
2022-02-02 13:29:09 +01:00