Skip to content

Commit 8909b22

Browse files
authored
Merge pull request #883 from alexpantyukhin/split_fproj
extract FSharpProjectOptions
2 parents e082581 + 05455ad commit 8909b22

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fcs/docsrc/content/typedtree.fsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ let parseAndCheckSingleFile (input) =
4545
checker.GetProjectOptionsFromScript(file, input)
4646
|> Async.RunSynchronously
4747

48-
checker.ParseAndCheckProject(projOptions)
48+
let fprojOptions, _ = projOptions
49+
50+
checker.ParseAndCheckProject (fprojOptions)
4951
|> Async.RunSynchronously
5052

5153
(**

0 commit comments

Comments
 (0)