8000
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 35cd5fa commit cc8b796Copy full SHA for cc8b796
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