add tests, add ctor

This commit is contained in:
Johannes Rieken
2017-03-10 10:26:52 +01:00
parent e0bbbb8653
commit 6a062eea3f

View File

@@ -411,6 +411,10 @@ export class EndOfLineEdit {
static readonly CRLF: EndOfLineEdit = Object.freeze({ newEol: EndOfLine.CRLF });
newEol: EndOfLine;
constructor(newEol: EndOfLine) {
this.newEol = newEol;
}
}
export class TextEdit {