5 ms·
What magic directory names? The special case for "pkg" is the only one I saw. The main proposal is one of scoping by directory hierarchy - /a/b/c can import a/
by bwooce 12y ago
What magic directory names? The special case for "pkg" is the only one I saw.
The main proposal is one of scoping by directory hierarchy - /a/b/c can import a/b/d but a/g/x can't.
- frou_dh 12y ago> /a/b/c can import a/b/d but a/g/x can't. No - x can import d because d isn't in a directory literally named internal. That's the magic name.
- lloeki 12y ago> What magic directory names? "internal" > The main proposal is one of scoping by directory hierarchy - /a/b/c can import a/b/d but a/g/x can't. /a/b/c can import a/b/d, and /a/g/x and /z can too. The new rule is that /a/g/x can not import /a/internal/y.
- sltkr 12y ago> The new rule is that /a/g/x can not import /a/internal/y. As I understand it, /a/g/x CAN import /a/internal/y, because /a/g/x is in the directory tree that starts at /a/. However, /b/h/z CANNOT import /a/internal/y/ (while previously, it could).