Environment: CIQ SDK 3.0.7
In the following code, assume that A is an undefined symbol.
function initialize() {
SimpleDataField.initialize();
var x = new A(); // produces compile error as expected
A(); // compiles but crashes at run time
A = null; // compiles but crashes at run time
// ...
}