Skip to content

Commit 790e3c6

Browse files
committed
fix metadata failure due to double duplication
1 parent abf4d5b commit 790e3c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Compiler/Driver/ParseAndCheckInputs.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,7 @@ let CheckOneInputAux
12681268
tcState
12691269

12701270
let partialResult =
1271-
(amap, conditionalDefines, rootSig, priorErrors, file, tcState, tcStateForImplFile, ccuSigForFile)
1271+
(amap, conditionalDefines, rootSig, priorErrors, file, tcStateForImplFile, ccuSigForFile)
12721272

12731273
return Choice2Of2 partialResult, tcState
12741274

@@ -1327,7 +1327,7 @@ let CheckOneInput
13271327

13281328
match partialResult with
13291329
| Choice1Of2 result -> return result, tcState
1330-
| Choice2Of2 (_amap, _conditionalDefines, rootSig, _priorErrors, file, tcState, tcStateForImplFile, ccuSigForFile) ->
1330+
| Choice2Of2 (_amap, _conditionalDefines, rootSig, _priorErrors, file, tcStateForImplFile, ccuSigForFile) ->
13311331
let emptyImplFile = CreateEmptyDummyImplFile file.QualifiedName rootSig
13321332
let tcEnvAtEnd = tcStateForImplFile.TcEnvFromImpls
13331333
return (tcEnvAtEnd, EmptyTopAttrs, Some emptyImplFile, ccuSigForFile), tcState
@@ -1464,7 +1464,7 @@ let CheckMultipleInputsInParallel
14641464

14651465
match partialResult with
14661466
| Choice1Of2 result -> result, false
1467-
| Choice2Of2 (amap, conditionalDefines, rootSig, priorErrors, file, _tsState, tcStateForImplFile, ccuSigForFile) ->
1467+
| Choice2Of2 (amap, conditionalDefines, rootSig, priorErrors, file, tcStateForImplFile, ccuSigForFile) ->
14681468

14691469
// In the first linear part of parallel checking, we use a 'checkForErrors' that checks either for errors
14701470
// somewhere in the files processed prior to this one, including from the first phase, or in the processing

0 commit comments

Comments
 (0)