mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
188 B
JavaScript
12 lines
188 B
JavaScript
import 'dummy';
|
|
|
|
function Foo() {
|
|
this.foo = source();
|
|
var obj = {
|
|
bar: function() {
|
|
sink(this.foo); // NOT OK
|
|
}
|
|
};
|
|
Object.assign(this, obj);
|
|
}
|