| Issue 237: | DCE + NME | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Fixed
|