Overview
Comment: | [graphspell][js] remove pointless comments |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | graphspell |
Files: | files | file ages | folders |
SHA3-256: |
39ec0a2c4568afa85f2ebb3db6292727 |
User & Date: | olr on 2018-02-10 21:33:06 |
Other Links: | manifest | tags |
Context
2018-02-11
| ||
08:31 | [graphspell] better variable name: nVersion -> nCompressionMethod check-in: 702572913c user: olr tags: trunk, graphspell | |
2018-02-10
| ||
21:33 | [graphspell][js] remove pointless comments check-in: 39ec0a2c45 user: olr tags: trunk, graphspell | |
21:32 | [fr] tests: <comment vous Vinf> / <comment vous 2p> check-in: b1ca5b3203 user: olr tags: trunk, fr | |
Changes
Modified graphspell-js/dawg.js from [68590304c9] to [db5af827ce].
︙ | ︙ | |||
359 360 361 362 363 364 365 | for (let oNode of this.dMinimizedNodes.values()) { oNode.addr = iAddr; iAddr += Math.max(oNode.arcs.size, 1) * nBytesNode; } } _createJSON (nMethod) { | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | for (let oNode of this.dMinimizedNodes.values()) { oNode.addr = iAddr; iAddr += Math.max(oNode.arcs.size, 1) * nBytesNode; } } _createJSON (nMethod) { let sByDic = ""; if (nMethod == 1) { sByDic = this.oRoot.convToBytes1(this.nBytesArc, this.nBytesNodeAddress); for (let oNode of this.dMinimizedNodes.values()) { sByDic += oNode.convToBytes1(this.nBytesArc, this.nBytesNodeAddress); } } |
︙ | ︙ |