mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 11:18:10 +02:00
CodeTools expreval: Ord() support
This commit is contained in:
parent
62fc17066e
commit
cc4f9c7388
@ -1666,6 +1666,14 @@ var
|
||||
ReadNextAtom;
|
||||
if not ParseOptionParams(Operand) then exit;
|
||||
exit(true);
|
||||
end else
|
||||
if CompareIdentifiers(AtomStart,'ORD')=0 then begin
|
||||
// ORD not fully supported yet, return '0' (like HIGH and LOW)
|
||||
ReadNextAtom;
|
||||
if AtomStart^<>'(' then StrExpectedAtPos(AtomStart,'(');
|
||||
if not ReadTilEndBracket then exit;
|
||||
SetOperandValueChar(Operand,'0');
|
||||
exit(true);
|
||||
end;
|
||||
'S':
|
||||
if CompareIdentifiers(AtomStart,'SIZEOF')=0 then begin
|
||||
|
Loading…
Reference in New Issue
Block a user