ts-simple-ast
Version:
TypeScript compiler wrapper for static analysis and code manipulation.
15 lines (14 loc) • 520 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var UnchangedTextManipulator = /** @class */ (function () {
function UnchangedTextManipulator() {
}
UnchangedTextManipulator.prototype.getNewText = function (inputText) {
return inputText;
};
UnchangedTextManipulator.prototype.getTextForError = function (newText) {
return newText;
};
return UnchangedTextManipulator;
}());
exports.UnchangedTextManipulator = UnchangedTextManipulator;