@@ -36,7 +36,7 @@ foo.bar;`
3636 fs = bundled .WrapFS (fs )
3737
3838 cd := "/"
39- host := compiler .NewCompilerHost (cd , fs , bundled .LibPath (), nil , nil )
39+ host := compiler .NewCompilerHost (cd , fs , bundled .LibPath (), nil , nil , nil )
4040
4141 parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile ("/tsconfig.json" , & core.CompilerOptions {}, host , nil )
4242 assert .Equal (t , len (errors ), 0 , "Expected no errors in parsed command line" )
@@ -70,7 +70,7 @@ func TestCheckSrcCompiler(t *testing.T) {
7070
7171 rootPath := tspath .CombinePaths (tspath .NormalizeSlashes (repo .TypeScriptSubmodulePath ), "src" , "compiler" )
7272
73- host := compiler .NewCompilerHost (rootPath , fs , bundled .LibPath (), nil , nil )
73+ host := compiler .NewCompilerHost (rootPath , fs , bundled .LibPath (), nil , nil , nil )
7474 parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile (tspath .CombinePaths (rootPath , "tsconfig.json" ), & core.CompilerOptions {}, host , nil )
7575 assert .Equal (t , len (errors ), 0 , "Expected no errors in parsed command line" )
7676 p := compiler .NewProgram (compiler.ProgramOptions {
@@ -87,7 +87,7 @@ func BenchmarkNewChecker(b *testing.B) {
8787
8888 rootPath := tspath .CombinePaths (tspath .NormalizeSlashes (repo .TypeScriptSubmodulePath ), "src" , "compiler" )
8989
90- host := compiler .NewCompilerHost (rootPath , fs , bundled .LibPath (), nil , nil )
90+ host := compiler .NewCompilerHost (rootPath , fs , bundled .LibPath (), nil , nil , nil )
9191 parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile (tspath .CombinePaths (rootPath , "tsconfig.json" ), & core.CompilerOptions {}, host , nil )
9292 assert .Equal (b , len (errors ), 0 , "Expected no errors in parsed command line" )
9393 p := compiler .NewProgram (compiler.ProgramOptions {
0 commit comments