The current version generates something like var _ = "...__BRIDGE__";, which for the analyzer is an unused variable initialized to a constant, so it throws it out. Since there's no use for the var anyway, I chose to generate it as inline JavaScript, as the compiler will never touch that.
The current version generates something like
var _ = "...__BRIDGE__";
, which for the analyzer is an unused variable initialized to a constant, so it throws it out. Since there's no use for the var anyway, I chose to generate it as inline JavaScript, as the compiler will never touch that.