10 lines
160 B
JavaScript
Vendored
10 lines
160 B
JavaScript
Vendored
var log = "";
|
|
|
|
function C() {
|
|
}
|
|
Object.defineProperty(C.prototype, "foo", {
|
|
"get" : function () {
|
|
log += "foo called";
|
|
return "OK"
|
|
}
|
|
}); |