Browse Source

rtl: clean up

mattias 6 năm trước cách đây
mục cha
commit
e86dfef5de
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. 1 2
      packages/rtl/system.pas

+ 1 - 2
packages/rtl/system.pas

@@ -444,10 +444,9 @@ type
   private
     FLength: NativeInt; external name 'length';
     function GetElements(Index: NativeInt): JSValue; external name '[]';
-    procedure SetElements(Index: NativeInt; const AValue: JSValue); external name '[]';
   public
     property Length: NativeInt read FLength;
-    property Elements[Index: NativeInt]: JSValue read GetElements write SetElements; default;
+    property Elements[Index: NativeInt]: JSValue read GetElements; default;
   end;
 var
   WriteBuf: String;