chromium/v8/src/builtins/builtins-typed-array.cc

// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/builtins/builtins-utils-inl.h"
#include "src/builtins/builtins.h"
#include "src/logging/counters.h"
#include "src/objects/elements.h"
#include "src/objects/heap-number-inl.h"
#include "src/objects/js-array-buffer-inl.h"
#include "src/objects/objects-inl.h"

namespace v8 {
namespace internal {

// -----------------------------------------------------------------------------
// ES6 section 22.2 TypedArray Objects

// ES6 section 22.2.3.1 get %TypedArray%.prototype.buffer
BUILTIN(TypedArrayPrototypeBuffer) {}

namespace {

int64_t CapRelativeIndex(DirectHandle<Object> num, int64_t minimum,
                         int64_t maximum) {}

}  // namespace

BUILTIN(TypedArrayPrototypeCopyWithin) {}

BUILTIN(TypedArrayPrototypeFill) {}

BUILTIN(TypedArrayPrototypeIncludes) {}

BUILTIN(TypedArrayPrototypeIndexOf) {}

BUILTIN(TypedArrayPrototypeLastIndexOf) {}

BUILTIN(TypedArrayPrototypeReverse) {}

}  // namespace internal
}  // namespace v8