mirror of https://github.com/status-im/NimYAML.git
Actual fix for #40
This commit is contained in:
parent
8a83272341
commit
15f8995ae2
|
@ -74,7 +74,9 @@ type
|
|||
macro typeHintStateMachine(c: untyped, content: varargs[untyped]): typed =
|
||||
yAssert content.kind == nnkArgList
|
||||
result = newNimNode(nnkCaseStmt, content).add(copyNimNode(c))
|
||||
for branch in content.children:
|
||||
for branchStmt in content:
|
||||
let branch = branchStmt[0]
|
||||
echo $branch.kind
|
||||
yAssert branch.kind == nnkOfBranch
|
||||
var
|
||||
charBranch = newNimNode(nnkOfBranch, branch)
|
||||
|
|
Loading…
Reference in New Issue