From 7d5da6c8ab03ba70e0035ccdcc5b13051cd67a65 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Thu, 24 Jul 2014 16:03:48 -0700 Subject: [PATCH] remove the I prefix from interface name --- src/services/shims.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/shims.ts b/src/services/shims.ts index 5c334993156..a8821b1ea44 100644 --- a/src/services/shims.ts +++ b/src/services/shims.ts @@ -19,7 +19,7 @@ /// var debugObjectHost = (this); module TypeScript.Services { - export interface IScriptSnapshotShim { + export interface ScriptSnapshotShim { // Get's a portion of the script snapshot specified by [start, end). getText(start: number, end: number): string; @@ -49,7 +49,7 @@ module TypeScript.Services { getScriptVersion(fileName: string): number; getScriptIsOpen(fileName: string): boolean; getScriptByteOrderMark(fileName: string): number; - getScriptSnapshot(fileName: string): IScriptSnapshotShim; + getScriptSnapshot(fileName: string): ScriptSnapshotShim; resolveRelativePath(path: string, directory: string): string; fileExists(path: string): boolean; directoryExists(path: string): boolean; @@ -256,7 +256,7 @@ module TypeScript.Services { class ScriptSnapshotShimAdapter implements TypeScript.IScriptSnapshot { private lineStartPositions: number[] = null; - constructor(private scriptSnapshotShim: IScriptSnapshotShim) { + constructor(private scriptSnapshotShim: ScriptSnapshotShim) { } public getText(start: number, end: number): string {