@@ -1185,10 +1185,6 @@ namespace ts {
1185
1185
getCompilerOptions : ( ) => state . compilerOptions ,
1186
1186
getSourceFile : notImplemented ,
1187
1187
getSourceFiles : notImplemented ,
1188
- getSourceFileByPath : notImplemented ,
1189
- getFileIncludeReasons : notImplemented ,
1190
- getRootFileNames : notImplemented ,
1191
- getResolvedProjectReferences : notImplemented ,
1192
1188
getOptionsDiagnostics : notImplemented ,
1193
1189
getGlobalDiagnostics : notImplemented ,
1194
1190
getConfigFileParsingDiagnostics : notImplemented ,
@@ -1197,9 +1193,7 @@ namespace ts {
1197
1193
getSemanticDiagnostics : notImplemented ,
1198
1194
emit : notImplemented ,
1199
1195
getAllDependencies : notImplemented ,
1200
- useCaseSensitiveFileNames : notImplemented ,
1201
1196
getCurrentDirectory : notImplemented ,
1202
- getCanonicalFileName : notImplemented ,
1203
1197
emitNextAffectedFile : notImplemented ,
1204
1198
getSemanticDiagnosticsOfNextAffectedFile : notImplemented ,
1205
1199
emitBuildInfo : notImplemented ,
@@ -1225,11 +1219,7 @@ namespace ts {
1225
1219
releaseProgram : ( ) => state . program = undefined ,
1226
1220
getCompilerOptions : ( ) => state . compilerOptions ,
1227
1221
getSourceFile : fileName => getProgram ( ) . getSourceFile ( fileName ) ,
1228
- getSourceFileByPath : path => getProgram ( ) . getSourceFileByPath ( path ) ,
1229
1222
getSourceFiles : ( ) => getProgram ( ) . getSourceFiles ( ) ,
1230
- getFileIncludeReasons : ( ) => getProgram ( ) . getFileIncludeReasons ( ) ,
1231
- getRootFileNames : ( ) => getProgram ( ) . getRootFileNames ( ) ,
1232
- getResolvedProjectReferences : ( ) => getProgram ( ) . getResolvedProjectReferences ( ) ,
1233
1223
getOptionsDiagnostics : cancellationToken => getProgram ( ) . getOptionsDiagnostics ( cancellationToken ) ,
1234
1224
getGlobalDiagnostics : cancellationToken => getProgram ( ) . getGlobalDiagnostics ( cancellationToken ) ,
1235
1225
getConfigFileParsingDiagnostics : ( ) => configFileParsingDiagnostics ,
@@ -1239,9 +1229,7 @@ namespace ts {
1239
1229
emit : ( sourceFile , writeFile , cancellationToken , emitOnlyDts , customTransformers ) => getProgram ( ) . emit ( sourceFile , writeFile , cancellationToken , emitOnlyDts , customTransformers ) ,
1240
1230
emitBuildInfo : ( writeFile , cancellationToken ) => getProgram ( ) . emitBuildInfo ( writeFile , cancellationToken ) ,
1241
1231
getAllDependencies : notImplemented ,
1242
- useCaseSensitiveFileNames : ( ) => getProgram ( ) . useCaseSensitiveFileNames ( ) ,
1243
1232
getCurrentDirectory : ( ) => getProgram ( ) . getCurrentDirectory ( ) ,
1244
- getCanonicalFileName : fileName => getProgram ( ) . getCanonicalFileName ( fileName ) ,
1245
1233
close : noop ,
1246
1234
} ;
1247
1235
0 commit comments