mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 16:38:05 -06:00
Fix undefined this
This commit is contained in:
parent
205b3dae3b
commit
6429e4cd36
@ -535,8 +535,8 @@ namespace ts {
|
||||
data,
|
||||
writeBom,
|
||||
(p, d, w) => originalWriteFile.call(sys, p, d, w),
|
||||
sys.createDirectory,
|
||||
sys.directoryExists);
|
||||
p => sys.createDirectory.call(sys, p),
|
||||
p => sys.directoryExists.call(sys, p));
|
||||
}
|
||||
|
||||
/*@internal*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user