"Does Haxe's `@:native` support the method names of JavaScript's `extern class` 's function?

“Does Haxe’s @:native support the method names of JavaScript’s extern class's funciton ? It seems like it doesn’t work when I tested it.”

@:native("module.RDynamicMesh3")//here is support 
extern class RDynamicMesh3  {

@:native("f10042")//why here not work?
	public function Create2DPolygon(ptr:Int, length:Int, height:Float, lDrawPolygonDrawMode:EDrawPolygonDrawModeEnum, steps:Int, featureSizeRatio:Float):Void;
}

sorry,it’s worked.