mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-04 16:13:38 -05:00
add prefixes for getCanonicalName
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/// <reference path='..\..\src\compiler\prototype\tc.ts'/>
|
||||
/// <reference path='..\..\src\compiler\tc.ts'/>
|
||||
|
||||
module TypeScript.WebTsc {
|
||||
|
||||
@@ -31,10 +31,11 @@ module TypeScript.WebTsc {
|
||||
}
|
||||
return s;
|
||||
},
|
||||
writeFile(fileName: string, data: string): void {
|
||||
writeFile(fileName: string, data: string): boolean {
|
||||
var f = fso.CreateTextFile(fileName, true);
|
||||
f.Write(data);
|
||||
f.Close();
|
||||
return true;
|
||||
},
|
||||
resolvePath(path: string): string {
|
||||
return fso.GetAbsolutePathName(path);
|
||||
|
||||
Reference in New Issue
Block a user