ref property

Implementation

JSCFunctionListEntryRef get ref {
  final ptr = calloc.call<JSCFunctionListEntry_>(
    length * sizeOf<JSCFunctionListEntry_>(),
  );
  for (var i = 0; i < length; i++) {
    ptr[i] = elementAt(i).ref.ref;
  }
  return ptr;
}