1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
|
//===-- SwiftREPL.cpp -------------------------------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "SwiftREPL.h"
#include "SwiftExpressionVariable.h"
#include "Plugins/TypeSystem/Swift/SwiftASTContext.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Core/Module.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Core/StreamFile.h"
#include "lldb/Core/ValueObject.h"
#include "lldb/DataFormatters/TypeSummary.h"
#include "lldb/DataFormatters/ValueObjectPrinter.h"
#include "lldb/Host/HostInfo.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandReturnObject.h"
#include "lldb/Symbol/ObjectFile.h"
#include "lldb/Symbol/SymbolVendor.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/Target.h"
#include "lldb/Target/Thread.h"
#include "lldb/Utility/AnsiTerminal.h"
#include "llvm/ADT/ScopeExit.h"
#include "llvm/Support/raw_ostream.h"
#include "swift/Basic/Version.h"
#include "swift/Frontend/Frontend.h"
#include "swift/IDE/REPLCodeCompletion.h"
#include "swift/IDE/Utils.h"
#include "swift/SIL/SILModule.h"
using namespace lldb;
using namespace lldb_private;
char SwiftREPL::ID;
lldb::REPLSP SwiftREPL::CreateInstance(Status &err, lldb::LanguageType language,
Debugger *debugger, Target *target,
const char *repl_options) {
if (language != eLanguageTypeSwift) {
// TODO: EnumerateSupportedLanguages should make checking for this
// unnecessary.
return nullptr;
}
if (!target && !debugger) {
err.SetErrorString("must have a debugger or a target to create a REPL");
return nullptr;
}
if (target)
return CreateInstanceFromTarget(err, *target, repl_options);
else
return CreateInstanceFromDebugger(err, *debugger, repl_options);
}
lldb::REPLSP SwiftREPL::CreateInstanceFromTarget(Status &err, Target &target,
const char *repl_options) {
// Sanity check the target to make sure a REPL would work here.
if (!target.GetProcessSP() || !target.GetProcessSP()->IsAlive()) {
err.SetErrorString("can't launch a Swift REPL without a running process");
return nullptr;
}
SymbolContextList sc_list;
target.GetImages().FindSymbolsWithNameAndType(ConstString("_swift_release"),
eSymbolTypeAny, sc_list);
if (!sc_list.GetSize()) {
err.SetErrorString("can't launch a Swift REPL in a process that doesn't "
"have the Swift standard library");
return nullptr;
}
// Check that we can get a type system, or we aren't going anywhere:
auto type_system_or_err = target.GetScratchTypeSystemForLanguage(
eLanguageTypeSwift, true, repl_options ? repl_options : "");
if (!type_system_or_err) {
llvm::consumeError(type_system_or_err.takeError());
err.SetErrorString("Could not construct an expression "
"context for the REPL.\n");
return nullptr;
}
// Sanity checks succeeded. Go ahead.
auto repl_sp = lldb::REPLSP(new SwiftREPL(target));
repl_sp->SetCompilerOptions(repl_options);
return repl_sp;
}
lldb::REPLSP SwiftREPL::CreateInstanceFromDebugger(Status &err,
Debugger &debugger,
const char *repl_options) {
const char *bp_name = "repl_main";
FileSpec repl_executable = HostInfo::GetSupportExeDir();
if (!repl_executable) {
err.SetErrorString("unable to locate REPL executable");
return nullptr;
}
#if !defined(_WIN32)
const char *repl_exe_name = "repl_swift";
#else
const char *repl_exe_name = "repl_swift.exe";
#endif
repl_executable.SetFilename(repl_exe_name);
std::string repl_exe_path(repl_executable.GetPath());
if (!FileSystem::Instance().Exists(repl_executable)) {
err.SetErrorStringWithFormat("REPL executable does not exist: '%s'",
repl_exe_path.c_str());
return nullptr;
}
llvm::Triple target_triple = HostInfo::GetArchitecture().GetTriple();
llvm::SmallString<16> os_name;
llvm::raw_svector_ostream os(os_name);
// Use the most generic sub-architecture.
target_triple.setArch(target_triple.getArch());
os << llvm::Triple::getOSTypeName(target_triple.getOS());
// Override the stub's minimum deployment target to the host os version.
if (target_triple.isOSDarwin()) {
llvm::VersionTuple version = HostInfo::GetOSVersion();
os << version.getAsString();
}
target_triple.setOSName(os.str());
TargetSP target_sp;
err = debugger.GetTargetList().CreateTarget(
debugger, repl_exe_path.c_str(), target_triple.getTriple(),
eLoadDependentsYes, nullptr, target_sp);
if (!err.Success()) {
err.SetErrorStringWithFormat("failed to create REPL target: %s",
err.AsCString());
return nullptr;
}
// The Swift REPL can't deal with poisoning the scratch context
// in SwiftASTContext::ModulesDidLoad().
target_sp->SetUseAllCompilerFlags(false);
// Limit the breakpoint to our executable module
ModuleSP exe_module_sp(target_sp->GetExecutableModule());
if (!exe_module_sp) {
err.SetErrorString("unable to resolve REPL executable module");
target_sp->Destroy();
return nullptr;
}
FileSpecList containingModules;
containingModules.Append(exe_module_sp->GetFileSpec());
BreakpointSP main_bp_sp = target_sp->CreateBreakpoint(
&containingModules, // Limit to these modules
NULL, // Don't limit the breakpoint to any source files
bp_name, // Function name
eFunctionNameTypeAuto, // Name type
eLanguageTypeUnknown, // Language
0, // offset
eLazyBoolYes, // skip_prologue,
true, // internal
false); // request_hardware
if (main_bp_sp->GetNumLocations() == 0) {
err.SetErrorStringWithFormat("failed to resolve REPL breakpoint for '%s'",
bp_name);
return nullptr;
}
main_bp_sp->SetBreakpointKind("REPL");
assert(main_bp_sp->IsInternal()); // We made an internal
// breakpoint above, it better
// say it is internal
lldb_private::ProcessLaunchInfo launch_info;
llvm::StringRef target_settings_argv0 = target_sp->GetArg0();
if (target_sp->GetDisableASLR())
launch_info.GetFlags().Set(eLaunchFlagDisableASLR);
if (target_sp->GetDisableSTDIO())
launch_info.GetFlags().Set(eLaunchFlagDisableSTDIO);
if (!target_settings_argv0.empty()) {
launch_info.GetArguments().AppendArgument(target_settings_argv0);
launch_info.SetExecutableFile(exe_module_sp->GetPlatformFileSpec(), false);
} else {
launch_info.SetExecutableFile(exe_module_sp->GetPlatformFileSpec(), true);
}
launch_info.GetEnvironment() = target_sp->GetTargetEnvironment();
debugger.SetAsyncExecution(false);
err = target_sp->Launch(launch_info, nullptr);
debugger.SetAsyncExecution(true);
if (!err.Success()) {
err.SetErrorStringWithFormat("failed to launch REPL process: %s",
err.AsCString());
return nullptr;
}
ProcessSP process_sp(target_sp->GetProcessSP());
if (!process_sp) {
err.SetErrorString("failed to launch REPL process");
return nullptr;
}
// Start handling process events automatically
debugger.StartEventHandlerThread();
// Destroy the process and the event handler thread after a fatal error.
auto cleanup = llvm::make_scope_exit([&]() {
process_sp->Destroy(/*force_kill=*/false);
debugger.StopEventHandlerThread();
});
StateType state = process_sp->GetState();
if (state != eStateStopped) {
err.SetErrorString("failed to stop process at REPL breakpoint");
return nullptr;
}
ThreadList &thread_list = process_sp->GetThreadList();
const uint32_t num_threads = thread_list.GetSize();
if (num_threads == 0) {
err.SetErrorString("process is not in valid state (no threads)");
return nullptr;
}
ThreadSP thread_sp = thread_list.GetSelectedThread();
if (!thread_sp) {
thread_sp = thread_list.GetThreadAtIndex(0);
thread_list.SetSelectedThreadByID(thread_sp->GetID());
assert(thread_sp && "There should be at least one thread");
}
thread_sp->SetSelectedFrameByIndex(0);
REPLSP repl_sp(new SwiftREPL(*target_sp));
repl_sp->SetCompilerOptions(repl_options);
target_sp->SetREPL(lldb::eLanguageTypeSwift, repl_sp);
// Check that we can get a type system, or we aren't
// going anywhere. Remember to pass in the repl_options
// in case they set up framework paths we need, etc.
auto type_system_or_err = target_sp->GetScratchTypeSystemForLanguage(
eLanguageTypeSwift, true, repl_options ? repl_options : "");
if (!type_system_or_err) {
llvm::consumeError(type_system_or_err.takeError());
err.SetErrorString("Could not construct an expression "
"context for the REPL.\n");
return nullptr;
}
// Disable the cleanup, since we have a valid repl session now.
cleanup.release();
if (isatty(STDIN_FILENO)) {
std::string swift_full_version(swift::version::getSwiftFullVersion());
printf("Welcome to %s.\nType :help for assistance.\n",
swift_full_version.c_str());
}
return repl_sp;
}
LLDB_PLUGIN_DEFINE_ADV(SwiftREPL, ExpressionParserSwift)
void SwiftREPL::Initialize() {
SwiftASTContext::Initialize();
LanguageSet swift;
swift.Insert(lldb::eLanguageTypeSwift);
PluginManager::RegisterPlugin("swift", "The Swift REPL", &CreateInstance,
swift);
}
void SwiftREPL::Terminate() {
PluginManager::UnregisterPlugin(&CreateInstance);
SwiftASTContext::Terminate();
}
SwiftREPL::SwiftREPL(Target &target) : REPL(target), m_swift_ast(nullptr) {}
SwiftREPL::~SwiftREPL() {}
Status SwiftREPL::DoInitialization() {
if (m_compiler_options.empty())
return Status();
auto type_system_or_err =
m_target.GetScratchTypeSystemForLanguage(eLanguageTypeSwift, true,
m_compiler_options.c_str());
if (!type_system_or_err)
return Status(type_system_or_err.takeError());
return Status();
}
llvm::StringRef SwiftREPL::GetSourceFileBasename() {
static constexpr llvm::StringLiteral s_basename("repl.swift");
return s_basename;
}
bool SwiftREPL::SourceIsComplete(const std::string &source) {
std::unique_ptr<llvm::MemoryBuffer> source_buffer_ap(
llvm::MemoryBuffer::getMemBuffer(source));
swift::ide::SourceCompleteResult result =
swift::ide::isSourceInputComplete(std::move(source_buffer_ap),
swift::SourceFileKind::Main);
return result.IsComplete;
}
static bool GetIdentifier(llvm::StringRef &s, llvm::StringRef &identifier) {
if (!s.empty()) {
char ch = s[0];
if (isalpha(ch) || ch == '_') {
size_t i;
for (i = 1; i < s.size(); ++i) {
ch = s[i];
if (isalnum(ch) || ch == '_')
continue;
else
break;
}
identifier = s.substr(0, i);
s = s.drop_front(i);
return true;
}
}
return false;
}
lldb::offset_t SwiftREPL::GetDesiredIndentation(const StringList &lines,
int cursor_position,
int tab_size) {
// Determine appropriate indentation after the initial N-1 lines
StringList prior_lines = lines;
prior_lines.PopBack();
std::string source_string(prior_lines.CopyList());
std::unique_ptr<llvm::MemoryBuffer> source_buffer_ap(
llvm::MemoryBuffer::getMemBuffer(source_string));
swift::ide::SourceCompleteResult result =
swift::ide::isSourceInputComplete(std::move(source_buffer_ap),
swift::SourceFileKind::Main);
int desired_indent =
(result.IndentLevel * tab_size) + result.IndentPrefix.length();
const std::string &last_line = lines[lines.GetSize() - 1];
// Unindent for an initial closed brace on a line break, or when the brace was
// just typed
if (cursor_position == 0 || last_line[cursor_position - 1] == '}') {
// The brace must be the first non-space character
const size_t actual_indent = REPL::CalculateActualIndentation(lines);
if (last_line.length() > actual_indent && last_line[actual_indent] == '}') {
// Stop searching once a reason to unindent was found
desired_indent -= tab_size;
if (desired_indent < 0)
desired_indent = 0;
return desired_indent;
}
}
// Unindent for a case clause on a line break, or when the colon was just
// typed
if (cursor_position == 0 || last_line[cursor_position - 1] == ':') {
size_t colon_pos = last_line.find_last_of(':');
if (colon_pos != std::string::npos) {
std::string line_to_colon = last_line.substr(0, colon_pos);
llvm::StringRef line(line_to_colon);
line = line.ltrim(); // Skip leading spaces
if (!line.empty()) {
llvm::StringRef identifier;
if (GetIdentifier(line, identifier)) {
line = line.ltrim(); // Skip leading spaces
// If we have an empty line now, we have a simple label followed by a
// ':'
// and if it isn't we have "case" followed by a space, then we handle
// this as a cast statement
bool outdent = false;
if (line.empty())
outdent = !identifier.equals("case");
else if (identifier.equals("case")) {
outdent = true;
} else {
line = line.rtrim(); // Skip trailing spaces
// Check for any identifier followed by an optional paren expression
// and a colon
if (line.front() == '(' && line.back() == ')')
outdent = true;
}
if (outdent) {
// Stop searching once a reason to unindent was found
desired_indent -= tab_size;
if (desired_indent < 0)
desired_indent = 0;
return desired_indent;
}
}
}
}
}
// Otherwise, only change indentation when creating a new line
if (cursor_position == 0)
return desired_indent;
return LLDB_INVALID_OFFSET;
}
lldb::LanguageType SwiftREPL::GetLanguage() { return eLanguageTypeSwift; }
bool isThrownError(ValueObjectSP valobj_sp) {
ConstString name = valobj_sp->GetName();
size_t length = name.GetLength();
if (length < 3)
return false;
const char *name_cstr = name.AsCString();
if (name_cstr[0] != '$')
return false;
if (name_cstr[1] != 'E')
return false;
for (size_t index = 2; index < length; index++) {
char digit = name_cstr[index];
if (digit < '0' || digit > '9')
return false;
}
return true;
}
bool SwiftREPL::PrintOneVariable(Debugger &debugger, StreamFileSP &output_sp,
ValueObjectSP &valobj_sp,
ExpressionVariable *var) {
bool is_computed = false;
if (var) {
if (lldb::ValueObjectSP valobj_sp = var->GetValueObject()) {
Flags valobj_type_flags(valobj_sp->GetCompilerType().GetTypeInfo());
const bool is_swift(valobj_type_flags.AllSet(eTypeIsSwift));
if ((var->GetName().AsCString("anonymous")[0] != '$') && is_swift) {
is_computed = llvm::cast<SwiftExpressionVariable>(var)->GetIsComputed();
} else {
return false;
}
} else {
return false;
}
}
const bool colorize_out = debugger.GetUseColor();
bool handled = false;
Format format = m_format_options.GetFormat();
bool treat_as_void = (format == eFormatVoid);
// if we are asked to suppress void, check if this is the empty tuple type,
// and if so suppress it
if (!treat_as_void && !debugger.GetNotifyVoid()) {
const CompilerType &expr_type(valobj_sp->GetCompilerType());
Flags expr_type_flags(expr_type.GetTypeInfo());
if (expr_type_flags.AllSet(eTypeIsSwift | eTypeIsTuple)) {
treat_as_void = (expr_type.GetNumFields() == 0);
}
}
if (!treat_as_void) {
if (format != eFormatDefault)
valobj_sp->SetFormat(format);
DumpValueObjectOptions options;
options.SetUseDynamicType(lldb::eDynamicCanRunTarget);
options.SetMaximumPointerDepth(
{DumpValueObjectOptions::PointerDepth::Mode::Formatters, 1});
options.SetUseSyntheticValue(true);
options.SetRevealEmptyAggregates(false);
options.SetHidePointerValue(true);
options.SetVariableFormatDisplayLanguage(lldb::eLanguageTypeSwift);
options.SetDeclPrintingHelper([](ConstString type_name,
ConstString var_name,
const DumpValueObjectOptions &options,
Stream &stream) -> bool {
if (!type_name || !var_name)
return false;
std::string type_name_str(type_name ? type_name.GetCString() : "");
for (auto iter = type_name_str.find(" *"); iter != std::string::npos;
iter = type_name_str.find(" *")) {
type_name_str.erase(iter, 2);
}
if (!type_name_str.empty()) {
stream.Printf("%s: %s =", var_name.GetCString(), type_name_str.c_str());
return true;
}
return false;
});
if (is_computed) {
StringSummaryFormat::Flags flags;
flags.SetDontShowChildren(true);
flags.SetDontShowValue(true);
flags.SetHideItemNames(true);
flags.SetShowMembersOneLiner(false);
flags.SetSkipPointers(false);
flags.SetSkipReferences(false);
options.SetHideValue(true);
options.SetShowSummary(true);
options.SetSummary(lldb::TypeSummaryImplSP(
new StringSummaryFormat(flags, "<computed property>")));
}
if (colorize_out) {
const char *color = isThrownError(valobj_sp)
? ANSI_ESCAPE1(ANSI_FG_COLOR_RED)
: ANSI_ESCAPE1(ANSI_FG_COLOR_CYAN);
fprintf(output_sp->GetFile().GetStream(), "%s", color);
}
if (llvm::Error error = valobj_sp->Dump(*output_sp, options))
*output_sp << "error: " << toString(std::move(error));
if (colorize_out)
fprintf(output_sp->GetFile().GetStream(), ANSI_ESCAPE1(ANSI_CTRL_NORMAL));
handled = true;
}
return handled;
}
void SwiftREPL::CompleteCode(const std::string ¤t_code,
CompletionRequest &request) {
//----------------------------------------------------------------------g
// If we use the target's SwiftASTContext for completion, it reaaallly
// slows down subsequent expressions. The compiler team doesn't have time
// to fix this issue currently, so we need to work around it by making
// our own copy of the AST and using this separate AST for completion.
//----------------------------------------------------------------------
Status error;
if (!m_swift_ast) {
auto type_system_or_err =
m_target.GetScratchTypeSystemForLanguage(eLanguageTypeSwift);
if (!type_system_or_err) {
llvm::consumeError(type_system_or_err.takeError());
return;
}
auto *swift_ts =
llvm::dyn_cast_or_null<TypeSystemSwiftTypeRefForExpressions>(
type_system_or_err->get());
auto *target_swift_ast =
llvm::dyn_cast_or_null<SwiftASTContextForExpressions>(
swift_ts->GetSwiftASTContext(nullptr));
m_swift_ast = target_swift_ast;
}
SwiftASTContextForExpressions *swift_ast = m_swift_ast;
if (swift_ast) {
ThreadSafeASTContext ast = swift_ast->GetASTContext();
swift::REPLCompletions completions;
SourceModule completion_module_info;
completion_module_info.path.push_back(ConstString("repl"));
swift::ModuleDecl *repl_module = nullptr;
if (m_completion_module_initialized)
repl_module = swift_ast->GetModule(completion_module_info, error);
if (repl_module == nullptr) {
swift::ImplicitImportInfo importInfo;
importInfo.StdlibKind = swift::ImplicitStdlibKind::Stdlib;
repl_module = swift_ast->CreateModule(completion_module_info, error,
importInfo);
std::optional<unsigned> bufferID;
swift::SourceFile *repl_source_file = new (**ast) swift::SourceFile(
*repl_module, swift::SourceFileKind::Main, bufferID);
repl_module->addFile(*repl_source_file);
swift::performImportResolution(*repl_source_file);
m_completion_module_initialized = true;
}
if (repl_module) {
swift::SourceFile &repl_source_file =
repl_module->getMainSourceFile();
// Swift likes to give us strings to append to the current token but
// the CompletionRequest requires a replacement for the full current
// token. Fix this by getting the current token here and we attach
// the suffix we get from Swift.
std::string prefix = request.GetCursorArgumentPrefix().str();
llvm::StringRef current_code_ref(current_code);
completions.populate(repl_source_file, current_code_ref);
// The root is the unique completion we need to use, so let's add it
// to the completion list. As the completion is unique we can stop here.
llvm::StringRef root = completions.getRoot();
if (!root.empty()) {
request.AddCompletion(prefix + root.str(), "", CompletionMode::Partial);
return;
}
// Otherwise, advance through the completion state machine.
const swift::CompletionState completion_state = completions.getState();
switch (completion_state) {
case swift::CompletionState::CompletedRoot: {
// Display the completion list.
llvm::ArrayRef<llvm::StringRef> llvm_matches =
completions.getCompletionList();
for (const auto &llvm_match : llvm_matches) {
// The completions here aren't really useful for actually completing
// the token but are more descriptive hints for the user
// (e.g. "isMultiple(of: Int) -> Bool"). They aren't useful for
// actually completing anything so let's use the current token as
// a placeholder that is always valid.
if (!llvm_match.empty())
request.AddCompletion(prefix, llvm_match);
}
} break;
case swift::CompletionState::DisplayedCompletionList: {
// Complete the next completion stem in the cycle.
request.AddCompletion(prefix + completions.getPreviousStem().InsertableString.str());
} break;
case swift::CompletionState::Empty:
case swift::CompletionState::Unique: {
llvm::StringRef root = completions.getRoot();
if (!root.empty())
request.AddCompletion(prefix + root.str());
} break;
case swift::CompletionState::Invalid:
llvm_unreachable("got an invalid completion set?!");
}
}
}
}
|