mirror of
https://github.com/github/codeql.git
synced 2026-05-01 11:45:14 +02:00
QL code and tests for C#/C++/JavaScript.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
function Point(x, y) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
this.move = function(dx, dy) {
|
||||
this.x += dx;
|
||||
this.y += dy;
|
||||
};
|
||||
}
|
||||
|
||||
var p = new Point(2, 3),
|
||||
q = new Point(3, 4);
|
||||
Reference in New Issue
Block a user