379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
|
"nBytesNodeAddress": this.nBytesNodeAddress,
"nEntries": this.nEntry,
"nNode": this.nNode,
"nArc": this.nArc,
"nAff": this.nAff,
"cStemming": this.cStemming,
"nTag": this.nTag,
"dChar": this.dChar,
"_arcMask": this._arcMask,
"_finalNodeMask": this._finalNodeMask,
"_lastArcMask": this._lastArcMask,
"_addrBitMask": this._addrBitMask,
"nBytesOffset": this.nBytesOffset
};
return oJSON;
|
|
|
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
|
"nBytesNodeAddress": this.nBytesNodeAddress,
"nEntries": this.nEntry,
"nNode": this.nNode,
"nArc": this.nArc,
"nAff": this.nAff,
"cStemming": this.cStemming,
"nTag": this.nTag,
"dChar": helpers.mapToObject(this.dChar),
"_arcMask": this._arcMask,
"_finalNodeMask": this._finalNodeMask,
"_lastArcMask": this._lastArcMask,
"_addrBitMask": this._addrBitMask,
"nBytesOffset": this.nBytesOffset
};
return oJSON;
|