We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd14a4a commit 87e1df3Copy full SHA for 87e1df3
src/runtime/moduleobject.cs
@@ -35,7 +35,10 @@ public ModuleObject(string name) : base()
35
string docstring = "Namespace containing types from the following assemblies:\n\n";
36
foreach (Assembly a in AssemblyManager.GetAssemblies(name))
37
{
38
- filename = a.Location;
+ if (!a.IsDynamic && a.Location != null)
39
+ {
40
+ filename = a.Location;
41
+ }
42
docstring += "- " + a.FullName + "\n";
43
}
44
0 commit comments