caja.js and associated files use a callback pattern like this:
foo(function (module) { module.bar(...); });The problem is, I seem to be unable to tell Closure compiler that module has a bar. The options seem to be: 1. rewrite it as module['bar'](...) 2. I can't think of anything else. Any other ideas?
