فهرست منبع

[php] changed visibility of VectorData fields to public

Alexander Kuzmenko 7 سال پیش
والد
کامیت
1b34f9053e
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      std/php/_std/haxe/ds/Vector.hx

+ 2 - 2
std/php/_std/haxe/ds/Vector.hx

@@ -24,8 +24,8 @@ package haxe.ds;
 import php.*;
 
 private class PhpVectorData<T> {
-	@:allow(haxe.ds.Vector) var length:Int;
-	@:allow(haxe.ds.Vector) var data:NativeIndexedArray<T>;
+	public var length:Int;
+	public var data:NativeIndexedArray<T>;
 
 	public inline function new(length:Int) {
 		this.length = length;