mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 15:19:25 +02:00
+ add an asInt64 to texprvalue
git-svn-id: trunk@45051 -
This commit is contained in:
parent
89434f0124
commit
bffe99f59f
@ -931,6 +931,7 @@ type
|
||||
function isBoolean: Boolean;
|
||||
function asBool: Boolean;
|
||||
function asInt: Integer;
|
||||
function asInt64: Int64;
|
||||
function asStr: String;
|
||||
destructor destroy; override;
|
||||
end;
|
||||
@ -1348,6 +1349,11 @@ type
|
||||
result:=value.valueord.svalue;
|
||||
end;
|
||||
|
||||
function texprvalue.asInt64: Int64;
|
||||
begin
|
||||
result:=value.valueord.svalue;
|
||||
end;
|
||||
|
||||
function texprvalue.asStr: String;
|
||||
var
|
||||
b:byte;
|
||||
|
Loading…
Reference in New Issue
Block a user