//===--- Context.cpp ---------------------------------------------*- C++-*-===// // // 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 "support/Context.h" #include <cassert> namespace clang { namespace clangd { Context Context::empty() { … } Context::Context(std::shared_ptr<const Data> DataPtr) : … { … } Context Context::clone() const { … } static Context ¤tContext() { … } const Context &Context::current() { … } Context Context::swapCurrent(Context Replacement) { … } } // namespace clangd } // namespace clang