1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-30 15:13:03 +00:00

Deprecate the thread module.

This commit is contained in:
Calvin Rose
2021-08-15 17:36:47 -05:00
parent 81b5904188
commit 87b8dffe23
2 changed files with 10 additions and 0 deletions

View File

@@ -3651,6 +3651,12 @@
(put into k (x k))))
into)
# Deprecate thread library
(loop [[k v] :in (pairs root-env)
:when (symbol? k)
:when (string/has-prefix? "thread/" k)]
(put v :deprecated true))
# Modify root-env to remove private symbols and
# flatten nested tables.
(loop [[k v] :in (pairs root-env)