diff options
author | Araq <rumpf_a@web.de> | 2018-08-27 11:26:31 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-08-27 11:26:31 +0200 |
commit | 08c105c4e58718c4e7f9bca64f75604deb451ca3 (patch) | |
tree | 60275058f5ce4c5cb64dcb0471568758575ebb70 /tests/pragmas/mpushexperimental.nim | |
parent | c0c8828d9fc58d7cd9bbb76ed8bfd8a35fc3f636 (diff) | |
download | Nim-08c105c4e58718c4e7f9bca64f75604deb451ca3.tar.gz |
added missing file to make tests green
Diffstat (limited to 'tests/pragmas/mpushexperimental.nim')
-rw-r--r-- | tests/pragmas/mpushexperimental.nim | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/pragmas/mpushexperimental.nim b/tests/pragmas/mpushexperimental.nim new file mode 100644 index 000000000..569861c1d --- /dev/null +++ b/tests/pragmas/mpushexperimental.nim @@ -0,0 +1,30 @@ + +import macros + +macro enumerate(x: ForLoopStmt): untyped = + expectKind x, nnkForStmt + # we strip off the first for loop variable and use + # it as an integer counter: + result = newStmtList() + result.add newVarStmt(x[0], newLit(0)) + var body = x[^1] + if body.kind != nnkStmtList: + body = newTree(nnkStmtList, body) + body.add newCall(bindSym"inc", x[0]) + var newFor = newTree(nnkForStmt) + for i in 1..x.len-3: + newFor.add x[i] + # transform enumerate(X) to 'X' + newFor.add x[^2][1] + newFor.add body + result.add newFor + +proc main*[T](x: T) = + {.push experimental: "forLoopMacros".} + + for a, b in enumerate(items([1, 2, 3])): + echo a, " ", b + + for a2, b2 in enumerate([1, 2, 3, 5]): + echo a2, " ", b2 + {.pop.} |