v8-goose 145.0.2

Rust bindings to V8 (patched fork for Goose - fixes Windows CRT linkage)
Documentation
use crate::scope::PinScope;
// Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::Context;
use crate::Data;
use crate::FixedArray;
use crate::Local;
use crate::support::int;

unsafe extern "C" {
  fn v8__FixedArray__Length(this: *const FixedArray) -> int;

  fn v8__FixedArray__Get(
    this: *const FixedArray,
    context: *const Context,
    index: int,
  ) -> *const Data;
}

impl FixedArray {
  #[inline(always)]
  pub fn length(&self) -> usize {
    unsafe { v8__FixedArray__Length(self) as usize }
  }

  #[inline(always)]
  pub fn get<'s>(
    &self,
    scope: &PinScope<'s, '_>,
    index: usize,
  ) -> Option<Local<'s, Data>> {
    if index >= self.length() {
      return None;
    }

    unsafe {
      scope.cast_local(|sd| {
        v8__FixedArray__Get(self, &*sd.get_current_context(), index as int)
      })
    }
  }
}