202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
};
getInfoForToken (oToken) {
// Token: .sType, .sValue, .nStart, .nEnd
// return a list [type, token_string, values]
let m = null;
try {
helpers.echo(oToken);
switch (oToken.sType) {
case 'SEPARATOR':
return { sType: oToken.sType, sValue: oToken.sValue, aLabel: [_dSeparator._get(oToken.sValue, "caractère indéterminé")] };
break;
case 'NUM':
return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["nombre"] };
break;
|
<
|
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
};
getInfoForToken (oToken) {
// Token: .sType, .sValue, .nStart, .nEnd
// return a list [type, token_string, values]
let m = null;
try {
switch (oToken.sType) {
case 'SEPARATOR':
return { sType: oToken.sType, sValue: oToken.sValue, aLabel: [_dSeparator._get(oToken.sValue, "caractère indéterminé")] };
break;
case 'NUM':
return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["nombre"] };
break;
|