JS: Fix post-update flow into 'this'

This commit is contained in:
Asger F
2024-09-23 13:06:57 +02:00
parent 9fc99d6f9d
commit c3c003b275
5 changed files with 104 additions and 17 deletions

View File

@@ -45,7 +45,7 @@ function t4() {
class C {
constructor(x) {
this.foo = x;
sink(this.foo); // $ MISSING: hasValueFlow=t4.1
sink(this.foo); // $ hasValueFlow=t4.1
}
}
const c = new C(source('t4.1'));