UNPKG

@scalenc/nc-format

Version:

Library for handling TRUMPF NC file format.

15 lines 843 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Errors = void 0; class Errors { static EXPECTED_NUMBER_IN_EXPRESSION = "Expected number in expression but found '{0}'"; static EXPECTED_STRING_IN_EXPRESSION = "Expected string in expression but found '{0}'"; static UNEXPECTED_ARGS_IN_SUBPROGRAM_CALL = "Unexpected arguments in call to sub-program '{0}'."; static INVALID_GOTO_TARGET = "Invalid argument type of goto target '{0}'"; static UNSUPPORTED_FLOW_CONTROL_INSTRUCTION = "Unsupported flow-control instruction '{0}'"; static INVALID_CONDITIONAL_EXPRESSION = 'Invalid conditional expression.'; static UNKNOWN_GOTO_TARGET = "Unable to find goto target '{0}'"; static UNKNOWN_VARIABLE = "Unknown variable '{0}'"; } exports.Errors = Errors; //# sourceMappingURL=Errors.js.map