mirror of
https://github.com/github/codeql.git
synced 2026-02-03 00:31:07 +01:00
8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
function Point(x, y) {
|
|
return {
|
|
get x() { return x; },
|
|
set x(_x) { x = _x|0; },
|
|
get y() { return y; },
|
|
set y(_y) { y = _y|0; }
|
|
};
|
|
} |