UNPKG

pascal-utils

Version:

Utility functions for compilation of simple pascal programs, with the Free Pascal compiler, in Node.js.

12 lines 355 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class CompilerNotFoundError extends Error { /** * CompilerNotFoundError constructor. */ constructor() { super('Could not find the Free Pascal compiler'); } } exports.default = CompilerNotFoundError; //# sourceMappingURL=compilerNotFoundError.js.map