mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +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;
|
|
}
|
|
}; |