chromium/v8/src/builtins/data-view-ops.h

// Copyright 2023 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.

#ifndef V8_BUILTINS_DATA_VIEW_OPS_H_
#define V8_BUILTINS_DATA_VIEW_OPS_H_

#include <stdint.h>

// DataView operations that are handled as well-known imports.
#define DATAVIEW_OP_LIST(V)

enum DataViewOp : uint8_t {};

constexpr const char* ToString(DataViewOp op) {}

#endif  // V8_BUILTINS_DATA_VIEW_OPS_H_