テスト要素を作成する関数があります。関数を返す前に、メモリ リークを防ぐためにテスト要素への参照を無効にしています。しかし、クロージャーコンパイラーは、その行 b/c を削除しています (両方のモードで)。行が削除されないようにするために追加できるコメントはありますか?
function isExample (testElem) {
var bool;
testElem = testElem || document.createElement('div');
// Do stuff in here to determine `bool`
// ...
// Then nullify the reference
testElem = null; // The compiler removes this line. How do I make it keep it?
return bool;
}