I was looking through the Closure compiler annotations, and I noticed @nocollapse:
Denotes a property that should not be collapsed by the compiler into a > variable. The primary use for @nocollapse is to allow exporting of mutable > properties. > https://github.com/google/closure-compiler/wiki/Annotating-JavaScript-for-the-Closure-Compiler#nocollapse Isn't this collapsing behavior the reason why we needed to add -warn-public-vars? -- Josh Tynjala Bowler Hat LLC <https://bowlerhat.dev>
