roblox-ts
Version:
<div align="center"><img width=25% src="https://i.imgur.com/yCjHmng.png"></div> <h1 align="center"><a href="https://roblox-ts.github.io/">roblox-ts</a></h1> <div align="center">A TypeScript-to-Lua Compiler for Roblox</div> <br> <div align="center"> <a hr
13 lines • 344 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class DiagnosticError extends Error {
constructor(errors) {
super();
this.errors = errors;
}
toString() {
return this.errors.join("\n");
}
}
exports.DiagnosticError = DiagnosticError;
//# sourceMappingURL=DiagnosticError.js.map