UNPKG

@scalenc/nc-format

Version:

Library for handling TRUMPF NC file format.

17 lines 446 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Bracket = void 0; /// Brackets around other expressions. class Bracket { innerExpression; constructor( /// The inner expression within the backets. innerExpression) { this.innerExpression = innerExpression; } visit(visitor) { visitor.onBracket(this); } } exports.Bracket = Bracket; //# sourceMappingURL=Bracket.js.map