blob: 3b9b9bf71e24d6eda3efa6af2a6c1a49babf6fbb [file] [log] [blame]
Sam McCallc5a6ee12020-06-29 21:46:40 +02001//===--- Config.cpp - User configuration of clangd behavior ---------------===//
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 "Config.h"
10#include "support/Context.h"
11
12namespace clang {
13namespace clangd {
14
15Key<Config> Config::Key;
16
Sam McCall1f142872020-06-29 23:05:07 +020017const Config &Config::current() {
18 if (const Config *C = Context::current().get(Key))
Sam McCallc5a6ee12020-06-29 21:46:40 +020019 return *C;
20 static Config Default;
21 return Default;
22}
23
24} // namespace clangd
25} // namespace clang