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 ScriptSnapshotShim {
// Get's a portion of the script snapshot specified by [start, end).
@@ -49,7 +49,7 @@ module TypeScript.Services {
// string[]
getScriptFileNames(): string;
getScriptVersion(fileName: string): number;
getScriptIsOpen(fileName: string): boolean;
getScriptIsOpen(fileName: string): boolean;
getScriptByteOrderMark(fileName: string): number;
getScriptSnapshot(fileName: string): ScriptSnapshotShim;
resolveRelativePath(path: string, directory: string): string;
@@ -256,7 +256,7 @@ module TypeScript.Services {
}
class ScriptSnapshotShimAdapter implements TypeScript.IScriptSnapshot {
private lineStartPositions: number[] = null;
private lineStartPositions: number[] = null;
constructor(private scriptSnapshotShim: ScriptSnapshotShim) {
}