mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-10 09:49:27 +02:00
webidl: add Document/DocumentFragment/Node types
This commit is contained in:
parent
14466ee9d9
commit
b787203db7
@ -67,7 +67,10 @@ Type
|
||||
wibtUint32Array,
|
||||
wibtUint8ClampedArray,
|
||||
wibtFloat32Array,
|
||||
wibtFloat64Array
|
||||
wibtFloat64Array,
|
||||
wibtDocument,
|
||||
wibtDocumentFragment,
|
||||
wibtNode
|
||||
);
|
||||
TWebIDLBaseTypes = set of TWebIDLBaseType;
|
||||
const
|
||||
@ -110,7 +113,10 @@ const
|
||||
'Uint32Array',
|
||||
'Uint8ClampedArray',
|
||||
'Float32Array',
|
||||
'Float64Array');
|
||||
'Float64Array',
|
||||
'Document',
|
||||
'DocumentFragment',
|
||||
'Node');
|
||||
|
||||
type
|
||||
|
||||
|
@ -928,7 +928,10 @@ begin
|
||||
'Uint32Array',
|
||||
'Uint8ClampedArray',
|
||||
'Float32Array',
|
||||
'Float64Array': Result:=GetPasClassName(aTypeName);
|
||||
'Float64Array',
|
||||
'Document',
|
||||
'DocumentFragment',
|
||||
'Node': Result:=GetPasClassName(aTypeName);
|
||||
|
||||
'void': Result:=aTypeName;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user