mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
200 B
JavaScript
19 lines
200 B
JavaScript
var o = {
|
|
x: 42,
|
|
|
|
getX: function() {
|
|
return this.x;
|
|
},
|
|
|
|
setX: function(x) {
|
|
this.x = x;
|
|
},
|
|
|
|
getX: function() {
|
|
return this.x;
|
|
},
|
|
|
|
setX: function(x) {
|
|
this.x = x;
|
|
}
|
|
}; |