Skip to content

Commit

Permalink
Don't suppress missing FSI transitive references
Browse files Browse the repository at this point in the history
closes #626
fixes #509
  • Loading branch information
dungpa authored and latkin committed Sep 16, 2015
1 parent 225b990 commit 3dd2d62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,5 @@ tests/fsharpqa/Source/CodeGen/EmittedIL/ComputationExpressions/ComputationExprLi
*.chk
*.bak
*.orig
*.mdf
*.ldf
4 changes: 2 additions & 2 deletions src/absil/ilreflect.fs
Original file line number Diff line number Diff line change
Expand Up @@ -336,11 +336,11 @@ let convTypeRefAux (cenv:cenv) (tref:ILTypeRef) =
| None ->
let asmName = convAssemblyRef asmref
FileSystem.AssemblyLoad(asmName)
let typT = assembly.GetType(qualifiedName)
let typT = assembly.GetType(qualifiedName, throwOnError=true)
typT |> nonNull "convTypeRefAux"
| ILScopeRef.Module _
| ILScopeRef.Local _ ->
let typT = Type.GetType(qualifiedName,true)
let typT = Type.GetType(qualifiedName, throwOnError=true)
typT |> nonNull "convTypeRefAux"


Expand Down

0 comments on commit 3dd2d62

Please sign in to comment.