14 lines
292 B
JavaScript
14 lines
292 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
Object.defineProperty(exports, "CompileError", {
|
||
|
enumerable: true,
|
||
|
get: function() {
|
||
|
return CompileError;
|
||
|
}
|
||
|
});
|
||
|
class CompileError extends Error {
|
||
|
}
|
||
|
|
||
|
//# sourceMappingURL=compile-error.js.map
|