mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 19:27:45 +02:00
Merge branch 'main' of ssh://gitlab.com/freepascal.org/fpc/pas2js into main
This commit is contained in:
commit
b017682e82
2
compiler
2
compiler
@ -1 +1 @@
|
||||
Subproject commit db39d1a4e4af8d543db22dbf85abc1c0e4dc522e
|
||||
Subproject commit cbc8aa63c83df4e16635b26e479c508229428e07
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user