remove the I prefix from interface name

This commit is contained in:
Mohamed Hegazy 2014-07-24 16:03:48 -07:00
parent 4afbcf7b18
commit 7d5da6c8ab

View File

@ -19,7 +19,7 @@
/// <reference path='compiler\precompile.ts' />
var debugObjectHost = (<any>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 {