mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-28 02:03:59 +00:00
* continue #9582 for consts, close #9331, fix #20114 also move extractPragma to ast to pave the way for things like {.strdefine: "abc".} etc * changelog correctly * fix jsgen * update tgetimpl * fix sighashes * fix #19766, add comment about postfix * fix noRewrite LOL refs #16620 * fix changelog * fix destructors
17 lines
220 B
Nim
17 lines
220 B
Nim
discard """
|
|
action: compile
|
|
nimout: '''
|
|
const
|
|
foo {.strdefine.} = "abc"
|
|
let hey {.tddd.} = 5
|
|
'''
|
|
"""
|
|
|
|
import macros
|
|
|
|
template tddd {.pragma.}
|
|
|
|
expandMacros:
|
|
const foo {.strdefine.} = "abc"
|
|
let hey {.tddd.} = 5
|