@@ -38,7 +38,7 @@ foo.bar;`
3838 cd := "/"
3939 host := compiler .NewCompilerHost (cd , fs , bundled .LibPath (), nil , nil )
4040
41- parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile ("/tsconfig.json" , & core.CompilerOptions {}, host , nil )
41+ parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile ("/tsconfig.json" , & core.CompilerOptions {}, nil , host , nil )
4242 assert .Equal (t , len (errors ), 0 , "Expected no errors in parsed command line" )
4343
4444 p := compiler .NewProgram (compiler.ProgramOptions {
@@ -71,7 +71,7 @@ func TestCheckSrcCompiler(t *testing.T) {
7171 rootPath := tspath .CombinePaths (tspath .NormalizeSlashes (repo .TypeScriptSubmodulePath ), "src" , "compiler" )
7272
7373 host := compiler .NewCompilerHost (rootPath , fs , bundled .LibPath (), nil , nil )
74- parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile (tspath .CombinePaths (rootPath , "tsconfig.json" ), & core.CompilerOptions {}, host , nil )
74+ parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile (tspath .CombinePaths (rootPath , "tsconfig.json" ), & core.CompilerOptions {}, nil , host , nil )
7575 assert .Equal (t , len (errors ), 0 , "Expected no errors in parsed command line" )
7676 p := compiler .NewProgram (compiler.ProgramOptions {
7777 Config : parsed ,
@@ -88,7 +88,7 @@ func BenchmarkNewChecker(b *testing.B) {
8888 rootPath := tspath .CombinePaths (tspath .NormalizeSlashes (repo .TypeScriptSubmodulePath ), "src" , "compiler" )
8989
9090 host := compiler .NewCompilerHost (rootPath , fs , bundled .LibPath (), nil , nil )
91- parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile (tspath .CombinePaths (rootPath , "tsconfig.json" ), & core.CompilerOptions {}, host , nil )
91+ parsed , errors := tsoptions .GetParsedCommandLineOfConfigFile (tspath .CombinePaths (rootPath , "tsconfig.json" ), & core.CompilerOptions {}, nil , host , nil )
9292 assert .Equal (b , len (errors ), 0 , "Expected no errors in parsed command line" )
9393 p := compiler .NewProgram (compiler.ProgramOptions {
9494 Config : parsed ,
0 commit comments