Computes hash values for routine (proc, method etc) signatures.
Types
ConsiderFlag = enum CoProc, CoType, CoOwnerSig, CoIgnoreRange, CoConsiderOwned, CoDistinct, CoHashTypeInsideNode
- Source Edit
Procs
proc hashNonProc(s: PSym): SigHash {....raises: [], tags: [].}
- Source Edit
proc hashProc(s: PSym; conf: ConfigRef): SigHash {....raises: [OSError, Exception], tags: [RootEffect].}
- Source Edit
proc hashType(t: PType; conf: ConfigRef; flags: set[ConsiderFlag] = {CoType}): SigHash {. ...raises: [OSError, Exception], tags: [RootEffect].}
- Source Edit
proc idOrSig(s: PSym; currentModule: string; sigCollisions: var CountTable[SigHash]; conf: ConfigRef): Rope {. ...raises: [OSError, Exception], tags: [RootEffect].}
- Source Edit
proc sigHash(s: PSym; conf: ConfigRef): SigHash {....raises: [OSError, Exception], tags: [RootEffect].}
- Source Edit
proc symBodyDigest(graph: ModuleGraph; sym: PSym): SigHash {. ...raises: [OSError, Exception, KeyError], tags: [RootEffect, ReadDirEffect].}
- compute unique digest of the proc/func/method symbols recursing into invoked symbols as well Source Edit