Overview
| Comment: | [graphspell][js] ibdawg: remove useless var in constructor |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | graphspell | multid |
| Files: | files | file ages | folders |
| SHA3-256: |
1b2e82375737d072da4fe9e4a7c5255c |
| User & Date: | olr on 2018-02-13 14:25:32 |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-02-13
| ||
| 14:26 | [core] use spellchecker instead of ibdawg directly check-in: 62304c0cd5 user: olr tags: core, multid | |
| 14:25 | [graphspell][js] ibdawg: remove useless var in constructor check-in: 1b2e823757 user: olr tags: graphspell, multid | |
| 14:24 | [graphspell][js] fix variables name check-in: 63ccb31875 user: olr tags: graphspell, multid | |
Changes
Modified graphspell-js/ibdawg.js from [cea88b04de] to [508f46740c].
| ︙ | ︙ | |||
85 86 87 88 89 90 91 |
// INDEXABLE BINARY DIRECT ACYCLIC WORD GRAPH
constructor (param1, sPath="") {
// param1 can be a filename or a object with all the necessary data.
try {
let oData = null;
if (typeof(param1) == "string") {
| < | | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
// INDEXABLE BINARY DIRECT ACYCLIC WORD GRAPH
constructor (param1, sPath="") {
// param1 can be a filename or a object with all the necessary data.
try {
let oData = null;
if (typeof(param1) == "string") {
let sURL = (sPath !== "") ? sPath + "/" + param1 : "resource://grammalecte/graphspell/_dictionaries/"+param1;
oData = JSON.parse(helpers.loadFile(sURL));
} else {
oData = param1;
}
Object.assign(this, oData);
}
catch (e) {
|
| ︙ | ︙ |