Bladeren bron

[lua] fix array.shift for lua 5.3

Justin Donaldson 8 jaren geleden
bovenliggende
commit
9bd0102b16
1 gewijzigde bestanden met toevoegingen van 6 en 2 verwijderingen
  1. 6 2
      std/lua/_std/Array.hx

+ 6 - 2
std/lua/_std/Array.hx

@@ -65,8 +65,12 @@ class Array<T> {
 	public function shift() : Null<T> {
 		if (this.length == 0) return null;
 		var ret = this[0];
-		this[0] = this[1];
-		lua.Table.remove(untyped this,1);
+		if (this.length == 1){
+			this[0] = null;
+		} else if (this.length > 1) {
+			this[0] = this[1];
+			lua.Table.remove(untyped this,1);
+		}
 		this.length-=1;
 		return ret;
 	}