diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2022-03-23 16:42:54 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 20:42:54 +0100 |
commit | d14e8e8dccc87671acb832b4aea8e736ce60c13e (patch) | |
tree | 8afaa840b6bf1a2d7a4905050a0f2ce075e61b30 | |
parent | e93eaac223045543e753643765b6982a109b41a1 (diff) | |
download | Nim-d14e8e8dccc87671acb832b4aea8e736ce60c13e.tar.gz |
Remove Deprecated Nimscript proc (#19629)
-rw-r--r-- | lib/system/nimscript.nim | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/system/nimscript.nim b/lib/system/nimscript.nim index b4554d778..0ef5fc584 100644 --- a/lib/system/nimscript.nim +++ b/lib/system/nimscript.nim @@ -136,14 +136,6 @@ proc dirExists*(dir: string): bool {. ## Checks if the directory `dir` exists. builtin -template existsFile*(args: varargs[untyped]): untyped {.deprecated: "use fileExists".} = - # xxx: warning won't be shown for nimsscript because of current logic handling - # `foreignPackageNotes` - fileExists(args) - -template existsDir*(args: varargs[untyped]): untyped {.deprecated: "use dirExists".} = - dirExists(args) - proc selfExe*(): string = ## Returns the currently running nim or nimble executable. # TODO: consider making this as deprecated alias of `getCurrentCompilerExe` |