mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 20:49:09 +02:00
* Update some comments
This commit is contained in:
parent
8e1ecb6a67
commit
b5de5eed0e
@ -58,9 +58,9 @@ type
|
|||||||
EScannerError = class(EParserError);
|
EScannerError = class(EParserError);
|
||||||
|
|
||||||
TJSONOption = (joUTF8, // Return string with UTF8 codepage.
|
TJSONOption = (joUTF8, // Return string with UTF8 codepage.
|
||||||
joStrict, // Do not allow { a : "x" } (no quotes around a)
|
joStrict, // Do not allow { a : "x" } (no quotes around a).
|
||||||
joComments, // Allow javascript comments in JSON.
|
joComments, // Allow javascript comments in JSON.
|
||||||
joIgnoreTrailingComma, // Ignore trailing comma in array
|
joIgnoreTrailingComma, // Ignore trailing comma in array/object.
|
||||||
joIgnoreDuplicates, // Do not attempt to add duplicate object members. Default is to try and add them.
|
joIgnoreDuplicates, // Do not attempt to add duplicate object members. Default is to try and add them.
|
||||||
joBOMCheck, // Check for BOM marker at beginning of stream.
|
joBOMCheck, // Check for BOM marker at beginning of stream.
|
||||||
joSingle // Only read a single JSON value from the stream. Default is to continue reading tokens.
|
joSingle // Only read a single JSON value from the stream. Default is to continue reading tokens.
|
||||||
|
Loading…
Reference in New Issue
Block a user