llvm/lldb/source/Utility/CompletionRequest.cpp

//===-- CompletionRequest.cpp ---------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/Utility/CompletionRequest.h"

usingnamespacelldb;
usingnamespacelldb_private;

CompletionRequest::CompletionRequest(llvm::StringRef command_line,
                                     unsigned raw_cursor_pos,
                                     CompletionResult &result)
    :{}

std::string CompletionResult::Completion::GetUniqueKey() const {}

void CompletionResult::AddResult(llvm::StringRef completion,
                                 llvm::StringRef description,
                                 CompletionMode mode) {}

void CompletionResult::GetMatches(StringList &matches) const {}

void CompletionResult::GetDescriptions(StringList &descriptions) const {}