1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00

Change ROL and ROR names to Camel case per discission in https://github.com/QB64-Phoenix-Edition/QB64pe/pull/153

This commit is contained in:
Samuel Gomes 2022-09-01 21:30:23 +05:30
parent adf838cd81
commit 028017b21a

View file

@ -3689,7 +3689,7 @@ regid
' a740g: ROR & ROL additions
clearid
id.n = qb64prefix$ + "ROL"
id.n = qb64prefix$ + "RoL"
id.subfunc = 1
id.args = 2
id.arg = MKL$(UINTEGER64TYPE - ISPOINTER) + MKL$(ULONGTYPE - ISPOINTER) ' ***overridden by function evaluatefunc***
@ -3698,7 +3698,7 @@ id.hr_syntax = "_ROL(numericalVariable, numericalValue)"
regid
clearid
id.n = qb64prefix$ + "ROR"
id.n = qb64prefix$ + "RoR"
id.subfunc = 1
id.args = 2
id.arg = MKL$(UINTEGER64TYPE - ISPOINTER) + MKL$(ULONGTYPE - ISPOINTER) ' ***overridden by function evaluatefunc***