owensd / swift-langsrv

The language service implementation for VS Code.
MIT License
16 stars 4 forks source link

Swift Language Server

travis-ci badge status

Welcome to the Swift Language Server. This is a language server that aims to be a server that can be used by any development tool that whishes to target Swift.

Currently it provides the following interfaces to interact with it:

Future plans

Design Breakdown

The system is broken up into parts that are designed to be interchangeable. Each layer of the system is agnostic of the other layers, except for the data contracts that between each layer.

At a high level, the language server responds to commands that are passed into an implementation of a MessageSource class. That data is processed and passed along to a MessageProtocol implementation. From here, the data is parsed and turned into commands that can then be passed on to a LanguageServer instance.

Releasing

Before publishing a new release, it's important to have a clean CI build, the appropriate version set in VersionInfo, and a matching tag. Only the release bits should be published. Once that is all locked down, simply run make publish. A new release will be pushed up to GitHub.

BE CAREFUL! All release will be immediately available for others to download and use. This project makes use of semantic versioning. As such, some tools may automatically pick up new versions based on PATCH version changes.

Copyright (c) Kiad Studios, LLC. All rights reserved. Licensed under the MIT License. See License in the project root for license information.