You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(use subdir/file) doesn't actually make the stuff in that file accessible. I assume this is because it's imported in the name "subdir/file" rather than "file", and trying to do subdir/file/foo results in the resolver looking for a module name subdir, which doesn't exist.
Expected behaviour is for the file to be imported under the name file -- i.e. the path stem. Seems to be a trivial fix.
Admittedly this was before the path resolving changes, and I haven't tested that this bug still exists afterwards. There's no obvious behaviour for it to have been fixed, though.
The text was updated successfully, but these errors were encountered:
(use subdir/file)
doesn't actually make the stuff in that file accessible. I assume this is because it's imported in the name "subdir/file" rather than "file", and trying to dosubdir/file/foo
results in the resolver looking for a module namesubdir
, which doesn't exist.Expected behaviour is for the file to be imported under the name
file
-- i.e. the path stem. Seems to be a trivial fix.Admittedly this was before the path resolving changes, and I haven't tested that this bug still exists afterwards. There's no obvious behaviour for it to have been fixed, though.
The text was updated successfully, but these errors were encountered: