Files
codeql/javascript/ql/test/library-tests/CallGraphs/FullTest/protoclass.js
2019-07-08 12:57:34 +01:00

16 lines
215 B
JavaScript

import * as dummy from 'dummy';
function F() {
this.init();
}
F.prototype.init = function() {
this.method();
let m = this.method.bind(this);
m();
};
F.prototype.method = function() {};
export default F;