mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-15 07:43:26 +00:00
make nimforum compile again
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
import ast, md5
|
||||
from hashes import Hash
|
||||
from astalgo import debug
|
||||
from types import typeToString
|
||||
from types import typeToString, preferDesc
|
||||
from strutils import startsWith, contains
|
||||
|
||||
when false:
|
||||
@@ -185,12 +185,15 @@ proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]) =
|
||||
if sfAnon in t.sym.flags:
|
||||
# generated object names can be identical, so we need to
|
||||
# disambiguate furthermore by hashing the field types and names:
|
||||
# mild hack to prevent endless recursions (makes nimforum compile again):
|
||||
excl t.sym.flags, sfAnon
|
||||
let n = t.n
|
||||
for i in 0 ..< n.len:
|
||||
assert n[i].kind == nkSym
|
||||
let s = n[i].sym
|
||||
c.hashSym s
|
||||
c.hashType s.typ, flags
|
||||
incl t.sym.flags, sfAnon
|
||||
else:
|
||||
c &= t.id
|
||||
if t.len > 0 and t.sons[0] != nil:
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
discard """
|
||||
cmd: "nim c -r -f $file"
|
||||
output: '''
|
||||
OK
|
||||
OK
|
||||
|
||||
Reference in New Issue
Block a user