mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-18 00:29:04 +02:00
* Some IntN types
This commit is contained in:
parent
46f7c2d5dc
commit
2c68cfda8c
@ -50,6 +50,13 @@ const
|
||||
Base types
|
||||
*****************************************************************************}
|
||||
type
|
||||
Int8 = ShortInt;
|
||||
UInt8 = Byte;
|
||||
Int16 = SmallInt;
|
||||
UInt16 = Word;
|
||||
Int32 = Longint;
|
||||
UInt32 = LongWord;
|
||||
|
||||
Integer = LongInt;
|
||||
Cardinal = LongWord;
|
||||
DWord = LongWord;
|
||||
@ -68,6 +75,7 @@ type
|
||||
TTime = type TDateTime;
|
||||
TDate = type TDateTime;
|
||||
|
||||
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user