mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 07:07:54 +02:00
pastojs: typeinfo unicodestring andf widechar
This commit is contained in:
parent
d50c45362d
commit
3c19035a27
@ -26516,6 +26516,12 @@ begin
|
||||
if El.CustomData is TResElDataBaseType then
|
||||
begin
|
||||
bt:=TResElDataBaseType(El.CustomData).BaseType;
|
||||
case bt of
|
||||
btWideChar: bt:=btChar;
|
||||
btUnicodeString: bt:=btString;
|
||||
btCurrency: bt:=btIntDouble;
|
||||
end;
|
||||
|
||||
case bt of
|
||||
btShortInt,btByte,
|
||||
btSmallInt,btWord,
|
||||
@ -26530,11 +26536,6 @@ begin
|
||||
Result:=GetBIName(pbivnRTL)+'.'+lowercase(AContext.Resolver.BaseTypeNames[bt]);
|
||||
exit;
|
||||
end;
|
||||
btCurrency:
|
||||
begin
|
||||
Result:=GetBIName(pbivnRTL)+'.'+lowercase(AContext.Resolver.BaseTypeNames[btIntDouble]);
|
||||
exit;
|
||||
end;
|
||||
btCustom:
|
||||
if El.CustomData is TResElDataPas2JSBaseType then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user