From 9fdeffeb08c0c0a63953573861c7e92dbdbc852b Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Thu, 9 Apr 2015 14:18:32 -0700 Subject: [PATCH] Fix formatting and parameter names --- src/compiler/sys.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index f89c474ce7f..f9daf52c5f2 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -6,17 +6,17 @@ module ts { newLine: string; useCaseSensitiveFileNames: boolean; write(s: string): void; - readFile(fileName: string, encoding?: string): string; - writeFile(fileName: string, data: string, writeByteOrderMark?: boolean): void; - watchFile? (fileName: string, callback: (fileName: string) => void): FileWatcher; + readFile(path: string, encoding?: string): string; + writeFile(path: string, data: string, writeByteOrderMark?: boolean): void; + watchFile?(path: string, callback: (path: string) => void): FileWatcher; resolvePath(path: string): string; fileExists(path: string): boolean; directoryExists(path: string): boolean; - createDirectory(directoryName: string): void; + createDirectory(path: string): void; getExecutingFilePath(): string; getCurrentDirectory(): string; readDirectory(path: string, extension?: string): string[]; - getMemoryUsage? (): number; + getMemoryUsage?(): number; exit(exitCode?: number): void; }