зеркало из https://github.com/github/codeql.git
add failing test
This commit is contained in:
Родитель
8502939b65
Коммит
94e864e933
|
@ -0,0 +1,11 @@
|
|||
(function () {
|
||||
function Foobar() {}
|
||||
|
||||
Foobar.prototype = {
|
||||
method: function (obj, path, value) {
|
||||
obj[path[0]][path[1]] = value; // NOT OK - but not flagged [INCONSISTENCY]
|
||||
},
|
||||
};
|
||||
|
||||
module.exports.foobar = Foobar;
|
||||
})();
|
|
@ -1,3 +1,6 @@
|
|||
module.exports.set = function (obj, path, value) {
|
||||
obj[path[0]][path[1]] = value; // NOT OK
|
||||
}
|
||||
}
|
||||
|
||||
var other = require('./other')
|
||||
exports.foobar = other.foobar;
|
Загрузка…
Ссылка в новой задаче