[NFC][Coroutines] Use structured binding with llvm::enumerate in CoroSplit (#116879)
[llvm-project.git] / lldb / source / ValueObject / ValueObjectConstResultCast.cpp
blobac6eef5e415ecf8d93c49933877029126c235b91
1 //===-- ValueObjectConstResultCast.cpp ------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "lldb/ValueObject/ValueObjectConstResultCast.h"
11 namespace lldb_private {
12 class DataExtractor;
14 namespace lldb_private {
15 class Status;
17 namespace lldb_private {
18 class ValueObject;
21 using namespace lldb_private;
23 ValueObjectConstResultCast::ValueObjectConstResultCast(
24 ValueObject &parent, ConstString name, const CompilerType &cast_type,
25 lldb::addr_t live_address)
26 : ValueObjectCast(parent, name, cast_type), m_impl(this, live_address) {
27 m_name = name;
30 ValueObjectConstResultCast::~ValueObjectConstResultCast() = default;
32 lldb::ValueObjectSP ValueObjectConstResultCast::Dereference(Status &error) {
33 return m_impl.Dereference(error);
36 lldb::ValueObjectSP ValueObjectConstResultCast::GetSyntheticChildAtOffset(
37 uint32_t offset, const CompilerType &type, bool can_create,
38 ConstString name_const_str) {
39 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create,
40 name_const_str);
43 lldb::ValueObjectSP ValueObjectConstResultCast::AddressOf(Status &error) {
44 return m_impl.AddressOf(error);
47 size_t ValueObjectConstResultCast::GetPointeeData(DataExtractor &data,
48 uint32_t item_idx,
49 uint32_t item_count) {
50 return m_impl.GetPointeeData(data, item_idx, item_count);
53 lldb::ValueObjectSP
54 ValueObjectConstResultCast::DoCast(const CompilerType &compiler_type) {
55 return m_impl.Cast(compiler_type);