mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 15:57:45 +02:00
rtl: clean up, fixed strtoint $FF
This commit is contained in:
parent
55ac9ab11e
commit
5075b5f4d6
@ -471,7 +471,6 @@ var
|
||||
begin
|
||||
Code:=0;
|
||||
x:=Number(S);
|
||||
writeln('val ',x);
|
||||
if isNaN(x) then
|
||||
case copy(s,1,1) of
|
||||
'$': x:=Number('0x'+copy(S,2));
|
||||
|
@ -3691,13 +3691,11 @@ Var
|
||||
|
||||
begin
|
||||
N:=S;
|
||||
F:=Copy(N,1,1);
|
||||
if (F='$') then
|
||||
Radix:=16
|
||||
else if (F='&') then
|
||||
Radix:=8
|
||||
else if (F='%') then
|
||||
Radix:=2;
|
||||
case Copy(N,1,1) of
|
||||
'$': Radix:=16;
|
||||
'&': Radix:=8;
|
||||
'%': Radix:=2;
|
||||
end;
|
||||
If Radix<>10 then
|
||||
Delete(N,1,1);
|
||||
J:=parseInt(N,Radix);
|
||||
|
Loading…
Reference in New Issue
Block a user