Erik Arvidsson (2013-09-11T14:28:31.000Z)
What does the following do?

var x = 1;
var m = new Module({
  get x() {
    return x;
  }
});
print(m.x);
x++;
print(m.x);  // ???

Does ToModule do a [[Get]] or does it keep the accessor?

What about setters? Does it keep identity of the getter function?

-- 
erik
domenic at domenicdenicola.com (2013-09-25T01:32:42.425Z)
What does the following do?

```js
var x = 1;
var m = new Module({
  get x() {
    return x;
  }
});
print(m.x);
x++;
print(m.x);  // ???
```

Does ToModule do a [[Get]] or does it keep the accessor?

What about setters? Does it keep identity of the getter function?