Open
Description
It's unclear how object literals are treated under ADVANCED_OPTIMIZATION. The tutorial page that explains ADVANCED_OPTIMIZATION is incomplete.
I believe the following code does not preserve the 'preserveMe' property:
var x = {preserveMe: false};
However, this code does:
var x = {'preserveMe': false};
Please clarify the compilation semantics in the docs.