Overview
Comment: | [core][js] gc engine: bug fix > last index array |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | core |
Files: | files | file ages | folders |
SHA3-256: |
2f9a6adb89334bc6f0fdf766aca82d9e |
User & Date: | olr on 2020-04-17 10:29:23 |
Other Links: | manifest | tags |
Context
2020-04-17
| ||
16:40 | [fr] ajustements check-in: 6ecd98e581 user: olr tags: trunk, fr | |
10:29 | [core][js] gc engine: bug fix > last index array check-in: 2f9a6adb89 user: olr tags: trunk, core | |
09:19 | [fr] ajustements, +chimie activée par défaut check-in: 503b6064df user: olr tags: trunk, fr | |
Changes
Modified gc_core/js/lang_core/gc_engine.js from [93de934b15] to [b841335424].
︙ | ︙ | |||
1345 1346 1347 1348 1349 1350 1351 | } function g_token (lToken, i) { if (i < 0) { return lToken[0]; } if (i >= lToken.length) { | | | 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 | } function g_token (lToken, i) { if (i < 0) { return lToken[0]; } if (i >= lToken.length) { return lToken[lToken.length-1]; } return lToken[i]; } //////// Disambiguator |
︙ | ︙ |