diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-07-05 09:17:44 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-07-05 09:17:44 +0200 |
commit | 683c60e2fd91ceb9383d741849bbb53d4ef93748 (patch) | |
tree | 87b79ba38580feb8efa7ceb85b89f2e47a3237cb /lib/system.nim | |
parent | 04b3f8f24aa0a39d66fcce174c377e523f382a3a (diff) | |
download | Nim-683c60e2fd91ceb9383d741849bbb53d4ef93748.tar.gz |
restore deprecated PNimrodNode in order to make the CIs happy
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/system.nim b/lib/system.nim index a175b5016..eb50f4b1e 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -3855,6 +3855,8 @@ type NimNode* {.magic: "PNimrodNode".} = ref NimNodeObj ## represents a Nim AST node. Macros operate on this type. +{.deprecated: [PNimrodNode: NimNode].} + when false: template eval*(blk: typed): typed = ## executes a block of code at compile time just as if it was a macro |