Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate any #16920

Merged
merged 29 commits into from
Feb 9, 2021
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
bfaf7b6
ReSync with Devel
juancarlospaco Sep 2, 2020
914b642
ReSync devel
juancarlospaco Oct 25, 2020
13064ce
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Oct 26, 2020
76d1123
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Oct 26, 2020
04caa74
ReSync
juancarlospaco Oct 26, 2020
e4d1dce
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Oct 29, 2020
a899cc1
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Nov 3, 2020
d083701
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Nov 20, 2020
f66517f
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Dec 2, 2020
2ec956e
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 15, 2021
8684049
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 16, 2021
2ef8ada
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 18, 2021
c8c07e3
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 21, 2021
1216a03
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 22, 2021
3d391b7
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 22, 2021
3d6a30b
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 24, 2021
f6374a7
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 25, 2021
9977e37
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 29, 2021
35337e5
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 30, 2021
c4d67bb
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 30, 2021
50a0292
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 31, 2021
6161bcc
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Jan 31, 2021
b00a1c9
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
juancarlospaco Feb 3, 2021
156b3ca
Deprecate any
juancarlospaco Feb 3, 2021
b98cdb1
Deprecate any
juancarlospaco Feb 3, 2021
9373cc9
Merge branch 'devel' of https://github.com/nim-lang/Nim into kill-any
juancarlospaco Feb 3, 2021
2187ede
Breaking stuff
juancarlospaco Feb 3, 2021
a5ab3c4
UnBreak stuff
juancarlospaco Feb 3, 2021
9ba5721
Merge branch 'devel' of https://github.com/nim-lang/Nim into kill-any
juancarlospaco Feb 6, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ with other backends. see #9125. Use `-d:nimLegacyJsRound` for previous behavior.

- Removed the optional `longestMatch` parameter of the `critbits._WithPrefix` iterators (it never worked reliably)

- Deprecated `any`. See https://github.com/nim-lang/RFCs/issues/281
juancarlospaco marked this conversation as resolved.
Show resolved Hide resolved


## Language changes

- `nimscript` now handles `except Exception as e`.
Expand Down
2 changes: 1 addition & 1 deletion lib/system.nim
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type

void* {.magic: "VoidType".} ## Meta type to denote the absence of any type.
auto* {.magic: Expr.} ## Meta type for automatic type determination.
any* = distinct auto ## Meta type for any supported type.
any* {.deprecated: "Deprecated since v1.5; Use auto instead.".} = distinct auto ## Deprecated; Use `auto` instead. See https://github.com/nim-lang/RFCs/issues/281
timotheecour marked this conversation as resolved.
Show resolved Hide resolved
untyped* {.magic: Expr.} ## Meta type to denote an expression that
## is not resolved (for templates).
typed* {.magic: Stmt.} ## Meta type to denote an expression that
Expand Down