mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
215 B
JavaScript
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;
|