use flow labels to avoid dual configurations

This commit is contained in:
Erik Krogh Kristensen
2019-11-15 14:37:46 +01:00
parent 8d2ae136b0
commit 65a018ceed
4 changed files with 59 additions and 1312 deletions

View File

@@ -84,4 +84,16 @@
}
$('myId').html(foo); // Direct leak, reported by other query.
try {
unknown(foo.match(/foo/));
} catch(e) {
$('myId').html(e); // NOT OK!
}
try {
unknown([foo, "bar"]);
} catch(e) {
$('myId').html(e); // NOT OK!
}
});