mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
158 B
JavaScript
14 lines
158 B
JavaScript
(function(){
|
|
var x = SOURCE();
|
|
|
|
SINK(x);
|
|
|
|
if (BARRIER(x)) {
|
|
SINK(x); // NOT FLAGGED
|
|
} else {
|
|
SINK(x);
|
|
}
|
|
|
|
SINK(x);
|
|
});
|