diff options
author | metagn <metagngn@gmail.com> | 2022-08-23 22:41:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 21:41:30 +0200 |
commit | d1d141b135a605f81935e89322549013e5be3863 (patch) | |
tree | 27d0552df431ffa940ba8f66dc4be5507de2ad8d /compiler/condsyms.nim | |
parent | 14656154efa2b3f08a341742c697fd1064f40166 (diff) | |
download | Nim-d1d141b135a605f81935e89322549013e5be3863.tar.gz |
new .redefine pragma for templates, warn on redefinition without it (#20211)
* test CI for template redefinitions * adapt asyncmacro * fix quote * fix again * try something else * revert * fix ioselectors_select, disable packages CI * adapt more tests & simplify * more * more * more * rename to redefine, warn on implicit redefinition * basic documentation [skip ci] * Update compiler/lineinfos.nim Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
Diffstat (limited to 'compiler/condsyms.nim')
-rw-r--r-- | compiler/condsyms.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/condsyms.nim b/compiler/condsyms.nim index 5a7e78d5f..4d4358b16 100644 --- a/compiler/condsyms.nim +++ b/compiler/condsyms.nim @@ -140,3 +140,4 @@ proc initDefines*(symbols: StringTableRef) = defineSymbol("nimHasEffectsOf") defineSymbol("nimHasEnforceNoRaises") + defineSymbol("nimHasTemplateRedefinitionPragma") |