You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
procinSymChoice(sc, x: PNode): bool=if sc.kind == nkClosedSymChoice:
for i in0..<sc.len:
if sc.sons[i].sym == x.sym: returntrueelif sc.kind == nkOpenSymChoice:
# same name suffices for open sym choices!result= sc.sons[0].sym.name.id == x.sym.name.id
The text was updated successfully, but these errors were encountered: