diff options
author | Araq <rumpf_a@web.de> | 2012-01-15 01:03:57 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-01-15 01:03:57 +0100 |
commit | f58cc496725c65fe9d7ba85a0eab284255074416 (patch) | |
tree | e91f0c896238f0735cd96ca66a17aeaf7352f94f /compiler | |
parent | 4cfc0462a48cc85499e8aba0f803eb87f8188900 (diff) | |
download | Nim-f58cc496725c65fe9d7ba85a0eab284255074416.tar.gz |
niminst: bugfixes; documentation changes
Diffstat (limited to 'compiler')
-rwxr-xr-x | compiler/ast.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index 9e799e051..db5d8b9f0 100755 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -1024,7 +1024,7 @@ proc getStrOrChar*(a: PNode): string = proc isGenericRoutine*(s: PSym): bool = case s.kind - of skProc, skTemplate, skMacro, skIterator, skMethod: + of skProc, skTemplate, skMacro, skIterator, skMethod, skConverter: result = s.ast != nil and s.ast[genericParamsPos].kind != nkEmpty else: nil |