191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
this.sVerb = sVerb;
this.sVerbAux = "";
this._sRawInfo = conj.getVtyp(sVerbPattern);
this.sInfo = this._readableInfo(this._sRawInfo);
this._tTags = conj._getTags(sVerbPattern);
this._tTagsAux = conj._getTags(this.sVerbAux);
this.bProWithEn = (this._sRawInfo[5] === "e");
this.dConj = new Map ([
[":Y", new Map ([
["label", "Infinitif"],
[":", sVerb]
])],
[":P", new Map ([
["label", "Participe présent"],
|
>
|
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
this.sVerb = sVerb;
this.sVerbAux = "";
this._sRawInfo = conj.getVtyp(sVerbPattern);
this.sInfo = this._readableInfo(this._sRawInfo);
this._tTags = conj._getTags(sVerbPattern);
this._tTagsAux = conj._getTags(this.sVerbAux);
this.bProWithEn = (this._sRawInfo[5] === "e");
this.cGroup = this._sRawInfo[0];
this.dConj = new Map ([
[":Y", new Map ([
["label", "Infinitif"],
[":", sVerb]
])],
[":P", new Map ([
["label", "Participe présent"],
|