UNPKG

@scalenc/nc-format

Version:

Library for handling TRUMPF NC file format.

21 lines 468 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Function = void 0; /// Function call. class Function { name; args; constructor( /// The name of the function. name, /// The arguments of the function, or null. args) { this.name = name; this.args = args; } visit(visitor) { visitor.onFunction(this); } } exports.Function = Function; //# sourceMappingURL=Function.js.map