I am facing one scenario as below,
function a() {
var $$ = this;
eval("some script");
}
using closure compiler with simple level, it will remove the $$ var in the simplified output, but this variable maybe used by the code "some script" from script developers, so is there anyway to let closure compiler keep var $$ in the output? Thanks!