mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-06 04:52:26 +00:00
Formatting
This commit is contained in:
parent
3aa2bcec3e
commit
e4232275bf
7 changed files with 40 additions and 33 deletions
|
|
@ -1,5 +1,5 @@
|
|||
MODULE HashMap;
|
||||
IMPORT Logger, CharacterStack, Strings;
|
||||
IMPORT Logger, CharacterStack, Strings, Out;
|
||||
CONST
|
||||
ArrayMaxNumber = 5000;
|
||||
TYPE
|
||||
|
|
@ -48,8 +48,6 @@ BEGIN
|
|||
|
||||
REPEAT
|
||||
symbol := text[i];
|
||||
INC(i);
|
||||
|
||||
IF symbol = symbolBracketStart THEN
|
||||
Logger.Log("Starting Parse Json");
|
||||
END;
|
||||
|
|
@ -57,8 +55,12 @@ BEGIN
|
|||
IF symbol = symbolBracketStart THEN
|
||||
Logger.Log("End Parsing Json");
|
||||
END;
|
||||
INC(i);
|
||||
Logger.LogInt(i);
|
||||
UNTIL text[i] = 0AX;
|
||||
|
||||
|
||||
Out.String(" test");
|
||||
|
||||
RETURN jsonRecord;
|
||||
END Create;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue