Skip to content

Commit

Permalink
fix nim-lang#14142: no more clash with: import os + use of existsDir/…
Browse files Browse the repository at this point in the history
…dirExists/existsFile/fileExists/findExe in config.nims
  • Loading branch information
timotheecour committed Jun 15, 2020
1 parent 7f5ca0e commit d7ee4e7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion compiler/condsyms.nim
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ proc initDefines*(symbols: StringTableRef) =
defineSymbol("nimHasUserErrors")
defineSymbol("nimUncheckedArrayTyp")
defineSymbol("nimHasTypeof")
defineSymbol("nimErrorProcCanHaveBody")
defineSymbol("nimErrorProcCanHaveBody") # since #9665 but now unused
defineSymbol("nimHasInstantiationOfInMacro")
defineSymbol("nimHasHotCodeReloading")
defineSymbol("nimHasNilSeqs")
Expand Down
6 changes: 4 additions & 2 deletions lib/pure/os.nim
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ elif defined(posix):
else:
{.error: "OS module not ported to your operating system!".}

when weirdTarget and defined(nimErrorProcCanHaveBody):
{.pragma: noNimScript, error: "this proc is not available on the NimScript target".}
when weirdTarget:
template noNimScript(body): untyped = discard
# Adding a `disable` template and `{.pragma: noNimScript, disable.}`
# doesn't work pending https://github.com/timotheecour/Nim/issues/142
else:
{.pragma: noNimScript.}

Expand Down
8 changes: 7 additions & 1 deletion tests/test_nimscript.nims
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ import std/[
decls, compilesettings, with, wrapnils
]


block:
doAssert "./foo//./bar/".normalizedPath == "foo/bar".unixToNativePath

Expand All @@ -81,3 +80,10 @@ when false: # #14142
discard findExe("nim")

echo "Nimscript imports are successful."

block: # #14142
discard existsDir("/usr")
discard dirExists("/usr")
discard existsFile("/usr/foo")
discard fileExists("/usr/foo")
discard findExe("nim")

0 comments on commit d7ee4e7

Please sign in to comment.