Files
codeql/javascript/ql/src/LanguageFeatures/examples/InconsistentNewGood.js
2018-08-02 17:53:23 +01:00

8 lines
108 B
JavaScript

function Point(x, y) {
this.x = x;
this.y = y;
}
var p = new Point(23, 42),
q = new Point(56, 72);