1//===-- OptionValueArgs.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//===----------------------------------------------------------------------===//
8
9#include "lldb/Interpreter/OptionValueArgs.h"
10
11#include "lldb/Utility/Args.h"
12
13using namespace lldb;
14using namespace lldb_private;
15
16size_t OptionValueArgs::GetArgs(Args &args) const {
17 args.Clear();
18 for (const auto &value : m_values)
19 args.AppendArgument(arg_str: value->GetValueAs<llvm::StringRef>().value_or(u: ""));
20 return args.GetArgumentCount();
21}
22

source code of lldb/source/Interpreter/OptionValueArgs.cpp