Skip to content

Commit

Permalink
Fixes #12734 (#12784)
Browse files Browse the repository at this point in the history
  • Loading branch information
demotomohiro authored and Araq committed Dec 1, 2019
1 parent 6aade97 commit 378289c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion compiler/packagehandling.nim
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ proc getPackageName*(conf: ConfigRef; path: string): string =
if parents <= 0: break

proc fakePackageName*(conf: ConfigRef; path: AbsoluteFile): string =
# Convert `path` so that 2 modules with same name
# in different directory get different name and they can be
# placed in a directory.
# foo-#head/../bar becomes @foo-@hhead@s..@sbar
result = "@m" & relativeTo(path, conf.projectPath, '/').string.multiReplace({"/": "@s", "#": "@h", "@": "@@", ":": "@c"})
result = "@m" & relativeTo(path, conf.projectPath).string.multiReplace({$os.DirSep: "@s", $os.AltSep: "@s", "#": "@h", "@": "@@", ":": "@c"})

proc demanglePackageName*(path: string): string =
result = path.multiReplace({"@@": "@", "@h": "#", "@s": "/", "@m": "", "@c": ":"})
Expand Down

0 comments on commit 378289c

Please sign in to comment.