mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-06 13:02:26 +00:00
small fix of json parser.
This commit is contained in:
parent
a52c3efa8e
commit
f904807696
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ PROCEDURE GetNoneTerminalKeys(self : JsonTypePointer; VAR destination : ARRAY OF
|
||||||
VAR
|
VAR
|
||||||
i: LONGINT;
|
i: LONGINT;
|
||||||
BEGIN
|
BEGIN
|
||||||
FOR i := 0 TO LEN(self.NonTerminalKeys) - 1 DO
|
FOR i := 0 TO self.NonTerminalNumber - 1 DO
|
||||||
destination[i] := self.NonTerminalKeys[i];
|
destination[i] := self.NonTerminalKeys[i];
|
||||||
END;
|
END;
|
||||||
END GetNoneTerminalKeys;
|
END GetNoneTerminalKeys;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue