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

7 lines
114 B
JavaScript

function Rectangle(x, y, width, height) {
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}