chromium/v8/src/compiler/turboshaft/string-view.h

// Copyright 2024 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_COMPILER_TURBOSHAFT_STRING_VIEW_H_
#define V8_COMPILER_TURBOSHAFT_STRING_VIEW_H_

#include "src/compiler/turboshaft/operations.h"

namespace v8::internal::compiler::turboshaft {

// `StringView` implements the `ForeachIterable` concept for iterating the
// characters of a string.
class StringView {};

}  // namespace v8::internal::compiler::turboshaft

#endif  // V8_COMPILER_TURBOSHAFT_STRING_VIEW_H_