Merge branch 'main' of ssh://gitlab.com/freepascal.org/fpc/pas2js into main

This commit is contained in:
mattias 2021-12-28 13:16:20 +01:00
commit b017682e82
3 changed files with 5 additions and 3 deletions

@ -1 +1 @@
Subproject commit db39d1a4e4af8d543db22dbf85abc1c0e4dc522e
Subproject commit cbc8aa63c83df4e16635b26e479c508229428e07

View File

@ -5199,6 +5199,8 @@ procedure TComponent.InsertComponent(AComponent: TComponent);
begin
AComponent.ValidateContainer(Self);
if AComponent.FOwner <> nil then
AComponent.FOwner.RemoveComponent(AComponent);
ValidateRename(AComponent,'',AComponent.FName);
Insert(AComponent);
If csDesigning in FComponentState then

View File

@ -880,8 +880,8 @@ type
FFatal : Boolean; external name 'fatal';
FIgnoreBOM : Boolean; external name 'ignoreBOM';
Public
Constructor New(utfLabel : String);
Constructor New(utfLabel : String; Options : TJSTextDecoderOptions);
Constructor New(utfLabel : String); overload;
Constructor New(utfLabel : String; Options : TJSTextDecoderOptions); overload;
Function decode(arr : TJSTypedArray) : String; overload;
Function decode(arr : TJSArrayBuffer) : String; overload;
Function decode(arr : TJSTypedArray; opts : TJSTextDecodeOptions) : String; overload;