ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
16 lines (15 loc) • 590 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var FullReplacementTextManipulator = /** @class */ (function () {
function FullReplacementTextManipulator(newText) {
this.newText = newText;
}
FullReplacementTextManipulator.prototype.getNewText = function (inputText) {
return this.newText;
};
FullReplacementTextManipulator.prototype.getTextForError = function (newText) {
return newText;
};
return FullReplacementTextManipulator;
}());
exports.FullReplacementTextManipulator = FullReplacementTextManipulator;