Files
codeql/csharp/ql/test/library-tests/dataflow/fields
Tom Hvitved 6a6644b5c2 C#: Adjust data-flow for with expressions
In `x with { Foo = bar }`, instead of having a single data-flow step

`x => x with { Foo = bar }`

we now have two steps:

`x => { Foo = bar }`

and

`{ Foo = bar } => x with { Foo = bar }`

Moreover, `clearsContent` now targets the object initializer instead of the
whole `with` expression, which means that it will only apply to values carried
over from the old object and not those explicitly stored into the new object.
2021-02-12 19:54:52 +01:00
..
2019-12-10 15:48:48 +01:00
2019-09-02 13:14:17 +02:00
2019-08-16 15:49:37 +02:00
2019-08-16 15:49:37 +02:00
2019-08-16 15:49:37 +02:00
2019-08-16 15:49:37 +02:00
2019-08-16 15:49:37 +02:00
2019-08-23 09:25:05 +02:00
2020-04-17 13:49:08 +02:00
2020-06-23 10:55:11 +02:00