// 66: object-literal - getter
// To do: make all tests pass, leave the assert lines unchanged!
describe('An object literal can also contain getters', () => {
it('just prefix the property with `get` (and make it a function)', function() {
const obj = {
get x(){ return 'ax'; }
//x: function(){ return 'ax'; }()//Is the equivalent function
};
assert.equal(obj.x, 'ax');
});
it('must have NO parameters', function() {
//Debe tener exactamente cero parametros
const obj = {
get x() { return 'ax'; }
};
assert.equal(obj.x, 'ax');
});
it('can be a computed property (an expression enclosed in `[]`)', function() {
const keyName = 'ax';
const obj = {
get x() { return [keyName]; }
};
assert.equal(obj.x, 'ax');
});
it('can be removed using delete', function() {
const obj = {
get x() { return 'ax'; }
};
delete obj.x;
assert.equal(obj.x, void 0);
});
// The following dont seem to work in the current transpiler version
// but should be correct, as stated here https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/get
// It might be corrected later, new knowledge welcome.
it('must not overlap with a pure property', function() {
const obj = {
ax: 1,
get x() { return 'ax'; }
};
assert.equal(obj.x, 'ax');
});
it('multiple `get` for the same property are not allowed', function() {
const obj = {
bx: 1,
get x() { return 'ax'; },
get ax() { return 'ax1'; }
};
assert.equal(obj.x, 'ax');
});
});