Category talk:Wren-big: Difference between revisions

Content added Content deleted
m (→‎Source code: Removed a superfluous line.)
(→‎Source code: Bug fix.)
Line 140: Line 140:
static trim_(a) {
static trim_(a) {
var i = a.count - 1
var i = a.count - 1
while(a[i] == 0) {
while(i >= 0 && a[i] == 0) {
a.removeAt(i)
a.removeAt(i)
i = i - 1
i = i - 1