I just meet haxe right now, so I'm doing some tests. However the first test I made didn't work. Why does Api.getSize() only returns 0 (regardless of type and its assigned value)?
import flash.sampler.Api;
class Test {
static function main() {
var a = 44;
trace(Api.getSize(a)); // prints 0
}
}