[][src]Function dart_sys::Dart_AllocateWithNativeFields

pub unsafe extern "C" fn Dart_AllocateWithNativeFields(
    type_: Dart_Handle,
    num_native_fields: isize,
    native_fields: *const isize
) -> Dart_Handle

Allocate a new object without invoking a constructor, and sets specified native fields.

\param type The type of an object to be allocated. \param num_native_fields The number of native fields to set. \param native_fields An array containing the value of native fields.

\return The new object. If an error occurs during execution, then an error handle is returned.