2
0
Эх сурвалжийг харах

forgot to commit HxOverrides changes for #3071

frabbit 11 жил өмнө
parent
commit
6569e77583

+ 13 - 0
std/python/internal/HxOverrides.hx

@@ -31,9 +31,22 @@ class HxOverrides {
 		return if (s == null) "null" else s;
 	}
 
+
 	static public function shift(x) {
 		return Reflect.callMethod(null, Reflect.field(x, "shift"), []);
 	}
+	static public function pop(x) {
+		return Reflect.callMethod(null, Reflect.field(x, "pop"), []);
+	}
+
+	static public function push(x, e) {
+		return Reflect.callMethod(null, Reflect.field(x, "push"), [e]);
+	}
+
+	static public function join(x, e) {
+		return Reflect.callMethod(null, Reflect.field(x, "join"), [e]);
+	}
+
 	static public function toUpperCase(x) {
 		return Reflect.callMethod(null, Reflect.field(x, "toUpperCase"), []);
 	}