Files
codeql/javascript/ql/test/library-tests/PartialInvokeNode/closure.js
2019-10-21 11:32:22 +01:00

6 lines
115 B
JavaScript

goog.module('test');
function test(x) {
addEventListener("click", goog.bind(function(x, event) {}, this, x));
}