mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-11 17:41:26 -06:00
Update LKG
This commit is contained in:
parent
09d6e4aaa6
commit
dbf87641d7
57
bin/tsc.js
57
bin/tsc.js
@ -3003,7 +3003,7 @@ var ts;
|
||||
}
|
||||
function grammarErrorOnNode(node, message, arg0, arg1, arg2) {
|
||||
var span = getErrorSpanForNode(node);
|
||||
var start = ts.skipTrivia(file.text, span.pos);
|
||||
var start = span.end > span.pos ? ts.skipTrivia(file.text, span.pos) : span.pos;
|
||||
var length = span.end - start;
|
||||
file.syntacticErrors.push(ts.createFileDiagnostic(file, start, length, message, arg0, arg1, arg2));
|
||||
}
|
||||
@ -6297,16 +6297,51 @@ var ts;
|
||||
writeCommentRange(comment, writer);
|
||||
recordSourceMapSpan(comment.end);
|
||||
}
|
||||
var escapedCharsRegExp = /[\t\v\f\b\0\r\n\"\u2028\u2029\u0085]/g;
|
||||
var escapedCharsMap = {
|
||||
"\t": "\\t",
|
||||
"\v": "\\v",
|
||||
"\f": "\\f",
|
||||
"\b": "\\b",
|
||||
"\0": "\\0",
|
||||
"\r": "\\r",
|
||||
"\n": "\\n",
|
||||
"\"": "\\\"",
|
||||
"\u2028": "\\u2028",
|
||||
"\u2029": "\\u2029",
|
||||
"\u0085": "\\u0085"
|
||||
};
|
||||
function serializeSourceMapContents(version, file, sourceRoot, sources, names, mappings) {
|
||||
if (typeof JSON !== "undefined") {
|
||||
return JSON.stringify({
|
||||
version: version,
|
||||
file: file,
|
||||
sourceRoot: sourceRoot,
|
||||
sources: sources,
|
||||
names: names,
|
||||
mappings: mappings
|
||||
});
|
||||
}
|
||||
return "{\"version\":" + version + ",\"file\":\"" + escapeString(file) + "\",\"sourceRoot\":\"" + escapeString(sourceRoot) + "\",\"sources\":[" + serializeStringArray(sources) + "],\"names\":[" + serializeStringArray(names) + "],\"mappings\":\"" + escapeString(mappings) + "\"}";
|
||||
function escapeString(s) {
|
||||
return escapedCharsRegExp.test(s) ? s.replace(escapedCharsRegExp, function (c) {
|
||||
return escapedCharsMap[c] || c;
|
||||
}) : s;
|
||||
}
|
||||
function serializeStringArray(list) {
|
||||
var output = "";
|
||||
for (var i = 0, n = list.length; i < n; i++) {
|
||||
if (i) {
|
||||
output += ",";
|
||||
}
|
||||
output += "\"" + escapeString(list[i]) + "\"";
|
||||
}
|
||||
return output;
|
||||
}
|
||||
}
|
||||
function writeJavaScriptAndSourceMapFile(emitOutput, writeByteOrderMark) {
|
||||
encodeLastRecordedSourceMapSpan();
|
||||
writeFile(sourceMapData.sourceMapFilePath, JSON.stringify({
|
||||
version: 3,
|
||||
file: sourceMapData.sourceMapFile,
|
||||
sourceRoot: sourceMapData.sourceMapSourceRoot,
|
||||
sources: sourceMapData.sourceMapSources,
|
||||
names: sourceMapData.sourceMapNames,
|
||||
mappings: sourceMapData.sourceMapMappings
|
||||
}), false);
|
||||
writeFile(sourceMapData.sourceMapFilePath, serializeSourceMapContents(3, sourceMapData.sourceMapFile, sourceMapData.sourceMapSourceRoot, sourceMapData.sourceMapSources, sourceMapData.sourceMapNames, sourceMapData.sourceMapMappings), false);
|
||||
sourceMapDataList.push(sourceMapData);
|
||||
writeJavaScriptFile(emitOutput + "//# sourceMappingURL=" + sourceMapData.jsSourceMappingURL, writeByteOrderMark);
|
||||
}
|
||||
@ -14777,6 +14812,10 @@ var ts;
|
||||
function executeCommandLine(args) {
|
||||
var commandLine = ts.parseCommandLine(args);
|
||||
if (commandLine.options.locale) {
|
||||
if (typeof JSON === "undefined") {
|
||||
reportDiagnostic(ts.createCompilerDiagnostic(ts.Diagnostics.The_current_host_does_not_support_the_0_option, "--locale"));
|
||||
return sys.exit(1);
|
||||
}
|
||||
validateLocaleAndSetLanguage(commandLine.options.locale, commandLine.errors);
|
||||
}
|
||||
if (commandLine.errors.length > 0) {
|
||||
|
||||
@ -2808,7 +2808,7 @@ var ts;
|
||||
}
|
||||
function grammarErrorOnNode(node, message, arg0, arg1, arg2) {
|
||||
var span = getErrorSpanForNode(node);
|
||||
var start = ts.skipTrivia(file.text, span.pos);
|
||||
var start = span.end > span.pos ? ts.skipTrivia(file.text, span.pos) : span.pos;
|
||||
var length = span.end - start;
|
||||
file.syntacticErrors.push(ts.createFileDiagnostic(file, start, length, message, arg0, arg1, arg2));
|
||||
}
|
||||
@ -6102,16 +6102,51 @@ var ts;
|
||||
writeCommentRange(comment, writer);
|
||||
recordSourceMapSpan(comment.end);
|
||||
}
|
||||
var escapedCharsRegExp = /[\t\v\f\b\0\r\n\"\u2028\u2029\u0085]/g;
|
||||
var escapedCharsMap = {
|
||||
"\t": "\\t",
|
||||
"\v": "\\v",
|
||||
"\f": "\\f",
|
||||
"\b": "\\b",
|
||||
"\0": "\\0",
|
||||
"\r": "\\r",
|
||||
"\n": "\\n",
|
||||
"\"": "\\\"",
|
||||
"\u2028": "\\u2028",
|
||||
"\u2029": "\\u2029",
|
||||
"\u0085": "\\u0085"
|
||||
};
|
||||
function serializeSourceMapContents(version, file, sourceRoot, sources, names, mappings) {
|
||||
if (typeof JSON !== "undefined") {
|
||||
return JSON.stringify({
|
||||
version: version,
|
||||
file: file,
|
||||
sourceRoot: sourceRoot,
|
||||
sources: sources,
|
||||
names: names,
|
||||
mappings: mappings
|
||||
});
|
||||
}
|
||||
return "{\"version\":" + version + ",\"file\":\"" + escapeString(file) + "\",\"sourceRoot\":\"" + escapeString(sourceRoot) + "\",\"sources\":[" + serializeStringArray(sources) + "],\"names\":[" + serializeStringArray(names) + "],\"mappings\":\"" + escapeString(mappings) + "\"}";
|
||||
function escapeString(s) {
|
||||
return escapedCharsRegExp.test(s) ? s.replace(escapedCharsRegExp, function (c) {
|
||||
return escapedCharsMap[c] || c;
|
||||
}) : s;
|
||||
}
|
||||
function serializeStringArray(list) {
|
||||
var output = "";
|
||||
for (var i = 0, n = list.length; i < n; i++) {
|
||||
if (i) {
|
||||
output += ",";
|
||||
}
|
||||
output += "\"" + escapeString(list[i]) + "\"";
|
||||
}
|
||||
return output;
|
||||
}
|
||||
}
|
||||
function writeJavaScriptAndSourceMapFile(emitOutput, writeByteOrderMark) {
|
||||
encodeLastRecordedSourceMapSpan();
|
||||
writeFile(sourceMapData.sourceMapFilePath, JSON.stringify({
|
||||
version: 3,
|
||||
file: sourceMapData.sourceMapFile,
|
||||
sourceRoot: sourceMapData.sourceMapSourceRoot,
|
||||
sources: sourceMapData.sourceMapSources,
|
||||
names: sourceMapData.sourceMapNames,
|
||||
mappings: sourceMapData.sourceMapMappings
|
||||
}), false);
|
||||
writeFile(sourceMapData.sourceMapFilePath, serializeSourceMapContents(3, sourceMapData.sourceMapFile, sourceMapData.sourceMapSourceRoot, sourceMapData.sourceMapSources, sourceMapData.sourceMapNames, sourceMapData.sourceMapMappings), false);
|
||||
sourceMapDataList.push(sourceMapData);
|
||||
writeJavaScriptFile(emitOutput + "//# sourceMappingURL=" + sourceMapData.jsSourceMappingURL, writeByteOrderMark);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user