I am using closure compiler for my project.
One of my project files has an declaration like :
var data = window.somedata || {};
The file returns this object
which is being used by other files. Closure compiler renames all the properties of this data object
(in advanced mode) when it is used.
How to tell the compiler not to rename any property related to this variable?