mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-09 16:39:46 -05:00
make the BOM visible in the test output
This commit is contained in:
@@ -119,7 +119,7 @@ class CompilerBaselineRunner extends RunnerBase {
|
||||
});
|
||||
|
||||
function getByteOrderMarkText(file: Harness.Compiler.GeneratedFile): string {
|
||||
return file.writeByteOrderMark ? String.fromCharCode(ts.CharacterCodes.byteOrderMark) : '';
|
||||
return file.writeByteOrderMark ? "\u00EF\u00BB\u00BF" : "";
|
||||
}
|
||||
|
||||
function getErrorBaseline(toBeCompiled: { unitName: string; content: string }[],
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
var x;
|
||||
|
||||
//// [generateBOM.js]
|
||||
var x;
|
||||
var x;
|
||||
//# sourceMappingURL=generateBOM.js.map
|
||||
|
||||
//// [generateBOM.d.ts]
|
||||
declare var x: any;
|
||||
declare var x: any;
|
||||
|
||||
Reference in New Issue
Block a user