Skip to content

Commit 856fc79

Browse files
committed
Lint
1 parent 11df004 commit 856fc79

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/compiler/program.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ namespace ts {
618618
// A parallel array to projectReferences storing the results of reading in the referenced tsconfig files
619619
const resolvedProjectReferences: (ResolvedProjectReference | undefined)[] | undefined = projectReferences ? [] : undefined;
620620
const projectReferenceRedirects: Map<string> = createMap();
621-
621+
622622
const shouldCreateNewSourceFile = shouldProgramCreateNewSourceFiles(oldProgram, options);
623623
const structuralIsReused = tryReuseStructureFromOldProgram();
624624
if (structuralIsReused !== StructureIsReused.Completely) {

src/harness/vfs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ namespace vfs {
11551155
EROFS: "file system is read-only"
11561156
});
11571157

1158-
export function createIOError(code: keyof typeof IOErrorMessages, details: string = "") {
1158+
export function createIOError(code: keyof typeof IOErrorMessages, details = "") {
11591159
const err: NodeJS.ErrnoException = new Error(`${code}: ${IOErrorMessages[code]} ${details}`);
11601160
err.code = code;
11611161
if (Error.captureStackTrace) Error.captureStackTrace(err, createIOError);

0 commit comments

Comments
 (0)