MCPcopy Index your code
hub / github.com/antlr/antlr4 / finish

Method finish

runtime/JavaScript/src/antlr4/misc/HashCode.js:53–61  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

51 }
52
53 finish() {
54 let hash = this.hash ^ (this.count * 4);
55 hash = hash ^ (hash >>> 16);
56 hash = hash * 0x85EBCA6B;
57 hash = hash ^ (hash >>> 13);
58 hash = hash * 0xC2B2AE35;
59 hash = hash ^ (hash >>> 16);
60 return hash;
61 }
62
63 static hashStuff() {
64 const hash = new HashCode();

Callers 9

constructorMethod · 0.95
constructorMethod · 0.95
hashCodeMethod · 0.95
hashCodeMethod · 0.95
hashCodeMethod · 0.95
hashCodeMethod · 0.95
hashCodeForConfigSetMethod · 0.95
hashCodeMethod · 0.95
hashStuffMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected