@scalenc/nc-format
Version:
Library for handling TRUMPF NC file format.
25 lines (24 loc) • 1.01 kB
TypeScript
export declare class Errors {
static TOO_MANY_DECIMAL_CHARS: string;
static MISSING_STRING_END: string;
static INVALID_OPERATOR: string;
static INVALID_CHARACTER: string;
static INVALID_NUMBER: string;
static UNEXPECTED_LINE_OR_FILE_END: string;
static EXPECTED_OPERANT: string;
static EXPECTED_NUMBER: string;
static EXPECTED_INTEGER: string;
static EXPECTED_BINARY_OPERATOR: string;
static EXPECTED_CLOSING_BRACE: string;
static EXPECTED_GOTO: string;
static EXPECTED_LINE_END: string;
static EXPECTED_ASSIGNMENT_BUT_INSTRUCTION: string;
static UNEXPECTED_FIELD_BRACES: string;
static EXPECTED_ASSIGNMENT_OR_INSTRUCTION_BUT_FOUND_EXPRESSION: string;
static EXPECTED_TO_KEYWORD: string;
static EXPECTED_BLOCK_NUMBER_BUT_FOUND_EXPRESSION: string;
static EXPECTED_VARIABLE_TYPE: string;
static EXPECTED_VARIABLE_NAME: string;
static EXPECTED_CLOSING_FIELD_BRACE: string;
static ADDTIONAL_CHARS_AFTER_BRACE_COMMENT: string;
}