Grammalecte  Check-in [be32ffb142]

Overview
Comment:[graphspell][js] useless return
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | graphspell | salxg
Files: files | file ages | folders
SHA3-256: be32ffb14211bfaf7766140ce6ef8a4eb7616aee1a6bb930279b1768b05ae952
User & Date: olr on 2020-08-26 12:19:46
Other Links: branch diff | manifest | tags
Context
2020-08-26
12:21
[core][cli][fx] grammar analysis update (keeping tokens from being deleted) check-in: ed53270796 user: olr tags: cli, core, fx, salxg
12:19
[graphspell][js] useless return check-in: be32ffb142 user: olr tags: graphspell, salxg
08:17
[cli] grammatical analysis update check-in: c661a09a71 user: olr tags: cli, salxg
Changes

Modified graphspell-js/lexgraph_fr.js from [e233698561] to [273d120831].

545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
                    break;
                default:
                    oToken["aLabels"] = ["token de nature inconnue"];
            }
        } catch (e) {
            console.error(e);
        }
        return null;
    },

    getInfoForToken: function (oToken) {
        // Token: .sType, .sValue, .nStart, .nEnd
        // return a object {sType, sValue, aLabel}
        let m = null;
        try {







<







545
546
547
548
549
550
551

552
553
554
555
556
557
558
                    break;
                default:
                    oToken["aLabels"] = ["token de nature inconnue"];
            }
        } catch (e) {
            console.error(e);
        }

    },

    getInfoForToken: function (oToken) {
        // Token: .sType, .sValue, .nStart, .nEnd
        // return a object {sType, sValue, aLabel}
        let m = null;
        try {