All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.smithy.lsp.document.DocumentVersion Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
/*
 * 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