summary refs log tree commit diff stats
path: root/tests/overload/tparam_forwarding.nim
Commit message (Collapse)AuthorAgeFilesLines
* Backwards-compatible support for keyword arguments in the command syntaxZahary Karadjov2018-05-071-2/+3
|
* Bugfix: Allow matching on nkExprEqExpr against varargs[untyped]Zahary Karadjov2018-05-071-0/+15
| | | | | | | | | This enables macros accepting arbitrary keyword arguments: log("foo", prop1 = "bar", prop2 = "baz") As an added bonus, simple templates with varargs arguments can now forward their params to procs accepting keyword arguments.
* fix varargs forwarding for templates; fixes #5455 (#5505)zah2017-03-131-0/+37
* fix varargs forwarding for templates; fixes #5455 * document the macros' varargs change in the news for 0.16.2