io.deephaven.lang.shared.lsp.DiagnosticCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-open-api-lang-parser Show documentation
Show all versions of deephaven-open-api-lang-parser Show documentation
The 'open-api-lang-parser' project
/**
* Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
*/
package io.deephaven.lang.shared.lsp;
/**
* A collection of int constants used for diagnostic messages.
*
*
*/
public interface DiagnosticCode {
int MALFORMED = 1_000;
int MALFORMED_TYPE_ARGUMENT = 1_001;
int MALFORMED_EXPRESSION = 1_002;
int MISSING_CLOSE_QUOTE = 1_003;
int MISSING_CLOSE_PAREN = 1_003;
int MISSING_CLOSE_QUOTE_AND_PAREN = 1_004;
int MISSING_EQUALS = 1_005;
int MISSING_DOT = 1_006;
}