software.amazon.smithy.lsp.document.DocumentVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smithy-language-server Show documentation
Show all versions of smithy-language-server Show documentation
Language Server Protocol implementation for Smithy
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package software.amazon.smithy.lsp.document;
import org.eclipse.lsp4j.Range;
/**
* The Smithy version of the document, including the range it occupies.
*
* @param range The range of the version statement
* @param version The literal text of the version value
*/
public record DocumentVersion(Range range, String version) {}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy