mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-20 13:09:06 +02:00
rtl: type alias TDateTime, TDate, TTime, Int64, SIngle, Comp, Real, Extended, UnicodeString, WideString
This commit is contained in:
parent
029e1cbbff
commit
03ea3d5f5e
@ -47,19 +47,19 @@ type
|
||||
ValSInt = NativeInt;
|
||||
ValUInt = NativeUInt;
|
||||
ValReal = Double;
|
||||
Real = Double;
|
||||
Extended = Double;
|
||||
Real = type Double;
|
||||
Extended = type Double;
|
||||
|
||||
Int64 = NativeInt unimplemented; // only 53 bits at runtime
|
||||
UInt64 = NativeUInt unimplemented; // only 52 bits at runtime
|
||||
QWord = NativeUInt unimplemented; // only 52 bits at runtime
|
||||
Single = Double unimplemented;
|
||||
Comp = NativeInt unimplemented;
|
||||
Int64 = type NativeInt unimplemented; // only 53 bits at runtime
|
||||
UInt64 = type NativeUInt unimplemented; // only 52 bits at runtime
|
||||
QWord = type NativeUInt unimplemented; // only 52 bits at runtime
|
||||
Single = type Double unimplemented;
|
||||
Comp = type NativeInt unimplemented;
|
||||
NativeLargeInt = NativeInt;
|
||||
NativeLargeUInt = NativeUInt;
|
||||
|
||||
UnicodeString = String;
|
||||
WideString = String;
|
||||
UnicodeString = type String;
|
||||
WideString = type String;
|
||||
WideChar = char;
|
||||
UnicodeChar = char;
|
||||
|
||||
|
@ -316,10 +316,10 @@ Type
|
||||
*****************************************************************************}
|
||||
Type
|
||||
|
||||
TDateTime = double;
|
||||
TDateTime = type double;
|
||||
|
||||
TTime = TDateTime;
|
||||
TDate = TDateTime;
|
||||
TTime = type TDateTime;
|
||||
TDate = type TDateTime;
|
||||
|
||||
TSystemTime = record
|
||||
Year, Month, Day, DayOfWeek: word;
|
||||
|
Loading…
Reference in New Issue
Block a user