mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:00:13 +01:00
Add a language server for carbon as part of GSoC. This currently does code outline using toolchain parser. See development steps in utils/vscode/README.md for running and using language server.
11 lines
342 B
C++
11 lines
342 B
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#include "language_server/language_server.h"
|
|
|
|
auto main(int /*argc*/, char** /*argv*/) -> int {
|
|
Carbon::LS::LanguageServer::Start();
|
|
return 0;
|
|
}
|