You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when'"'=>-- a single quote to restore the syntax highlighting FSM in Notepad++ "
380
+
IndexWriter := IndexWriter +1;
381
+
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Found: String - Add new IndexElement(STR) at pos "&INTEGER'image(IndexWriter) &" setting Start to "&INTEGER'image(ContentWriter +1) & LF); endif;
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Linking new key to index "&INTEGER'image(ParserStack(StackPointer).Index) &" as child."& LF); endif;
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Found: Number - Add new IndexElement(NUM) at pos "&INTEGER'image(IndexWriter) &" setting Start to "&INTEGER'image(ContentWriter) & LF); endif;
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Linking new key to index "&INTEGER'image(ParserStack(StackPointer).Index) &" as child."& LF); endif;
Result.Error:= errorMessage("Parsing List("& printPos(Debug_Row, Debug_Column) &"): Keyword 'null' is not complete.");
414
+
exit loopi;
415
+
elsif (CurrentChar /= C_JSON_NULL(k)) then
416
+
Result.Error:= errorMessage("Parsing List("& printPos(Debug_Row, Debug_Column) &"): Keyword 'null' has a not allowed CHARACTERs.");
417
+
exit loopi;
418
+
endif;
419
+
endloop;
420
+
IndexWriter := IndexWriter +1;
421
+
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Found: NULL - Add new IndexElement(NULL) at pos "&INTEGER'image(IndexWriter) & LF); endif;
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Linking new key to index "&INTEGER'image(ParserStack(StackPointer).Index) &" as child."& LF); endif;
Result.Error:= errorMessage("Parsing Delimiter3("& printPos(Debug_Row, Debug_Column) &"): Keyword 'true' is not complete.");
439
+
exit loopi;
440
+
elsif (CurrentChar /= C_JSON_TRUE(k)) then
441
+
Result.Error:= errorMessage("Parsing Delimiter3("& printPos(Debug_Row, Debug_Column) &"): Keyword 'true' as not allowed CHARACTERs.");
442
+
exit loopi;
443
+
endif;
444
+
endloop;
445
+
IndexWriter := IndexWriter +1;
446
+
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Found: TRUE - Add new IndexElement(TRUE) at pos "&INTEGER'image(IndexWriter) & LF); endif;
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Linking new key to index "&INTEGER'image(ParserStack(StackPointer).Index) &" as child."& LF); endif;
Result.Error:= errorMessage("Parsing Delimiter3("& printPos(Debug_Row, Debug_Column) &"): Keyword 'false' is not complete.");
464
+
exit loopi;
465
+
elsif (CurrentChar /= C_JSON_FALSE(k)) then
466
+
Result.Error:= errorMessage("Parsing Delimiter3("& printPos(Debug_Row, Debug_Column) &"): Keyword 'false' as not allowed CHARACTERs.");
467
+
exit loopi;
468
+
endif;
469
+
endloop;
470
+
IndexWriter := IndexWriter +1;
471
+
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Found: FALSE - Add new IndexElement(FALSE) at pos "&INTEGER'image(IndexWriter) & LF); endif;
if (VERBOSE =TRUE) then jsonStringAppend(StringBuffer, StringWriter, "Linking new key to index "&INTEGER'image(ParserStack(StackPointer).Index) &" as child."& LF); endif;
0 commit comments