mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-28 11:10:11 +02:00
rtl: added rtti TProcedureFlag pfSafeCall and pfAsync
This commit is contained in:
parent
0d67dd9e56
commit
0e5b285b1d
@ -139,7 +139,9 @@ type
|
|||||||
TProcedureFlag = (
|
TProcedureFlag = (
|
||||||
pfStatic, // 2^0 = 1
|
pfStatic, // 2^0 = 1
|
||||||
pfVarargs, // 2^1 = 2
|
pfVarargs, // 2^1 = 2
|
||||||
pfExternal // 2^2 = 4 name may be an expression
|
pfExternal, // 2^2 = 4 name may be an expression
|
||||||
|
pfSafeCall, // 2^3 = 8
|
||||||
|
pfAsync // 2^4 = 16
|
||||||
);
|
);
|
||||||
TProcedureFlags = set of TProcedureFlag;
|
TProcedureFlags = set of TProcedureFlag;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user