Refresh master with initial release/0.24 snapshot (#332)

* Initial port of release/0.24 source code

* Fix additional headers

* Fix a typo in launch.json
This commit is contained in:
Karl Burtram
2017-12-15 15:38:57 -08:00
committed by GitHub
parent 271b3a0b82
commit 6ad0df0e3e
7118 changed files with 107999 additions and 56466 deletions

View File

@@ -64,7 +64,7 @@ var ModuleJsonFormat;
}
ModuleJsonFormat.is = is;
})(ModuleJsonFormat || (ModuleJsonFormat = {}));
var Line = (function () {
var Line = /** @class */ (function () {
function Line(indent) {
if (indent === void 0) { indent = 0; }
this.indent = indent;
@@ -83,7 +83,7 @@ var Line = (function () {
return Line;
}());
exports.Line = Line;
var TextModel = (function () {
var TextModel = /** @class */ (function () {
function TextModel(contents) {
this._lines = contents.split(/\r\n|\r|\n/);
}
@@ -96,7 +96,7 @@ var TextModel = (function () {
});
return TextModel;
}());
var XLF = (function () {
var XLF = /** @class */ (function () {
function XLF(project) {
this.project = project;
this.buffer = [];