Overview
| Comment: | [graphspell][js][bug] ibdawg: fix getJSON() |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | graphspell |
| Files: | files | file ages | folders |
| SHA3-256: |
c7ead17f10430c35d71d49ad3d3747c4 |
| User & Date: | olr on 2018-02-12 13:37:17 |
| Other Links: | manifest | tags |
Context
|
2018-02-12
| ||
| 13:41 | [graphspell][js] ibdawg: don’t reset this.sByDic check-in: f3ed6e3893 user: olr tags: trunk, graphspell | |
| 13:37 | [graphspell][js][bug] ibdawg: fix getJSON() check-in: c7ead17f10 user: olr tags: trunk, graphspell | |
| 12:55 | [graphspell] fix date generation check-in: 5dd255e81e user: olr tags: trunk, graphspell | |
Changes
Modified graphspell-js/ibdawg.js from [529ef5e9b4] to [2c539cbd16].
| ︙ | ︙ | |||
197 198 199 200 201 202 203 |
"nTag": this.nTag,
"cStemming": this.cStemming,
"dChar": helpers.mapToObject(this.dChar),
"nNode": this.nNode,
"nArc": this.nArc,
"lArcVal": this.lArcVal,
"nArcVal": this.nArcVal,
| | | 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
"nTag": this.nTag,
"cStemming": this.cStemming,
"dChar": helpers.mapToObject(this.dChar),
"nNode": this.nNode,
"nArc": this.nArc,
"lArcVal": this.lArcVal,
"nArcVal": this.nArcVal,
"nCompressionMethod": this.nCompressionMethod,
"nBytesArc": this.nBytesArc,
"nBytesNodeAddress": this.nBytesNodeAddress,
"nBytesOffset": this.nBytesOffset,
"sByDic": this.sByDic // binary word graph
};
return oJSON;
}
|
| ︙ | ︙ |