Issue 237: DCE + NME
Status:  Fixed
Owner: ----
Closed:  Aug 2013
Reported by ncanna...@gmail.com, Apr 25, 2013
DCE eliminates __get and __set methods of native.utils.Int32Array (and other native arrays) while it's accessed with []

class Test {
    static function main() {
         var n = new native.utils.Float32Array(10);
         n[0] = 1;
    }
}

Compile with "haxe -cpp test -main Test -lib nme -dce full" fails
Maybe marking them as @:keep 
Aug 22, 2013
Project Member #1 gameh...@gmail.com
Fixed in nme
Status: Fixed