Set of JSON scanner options
Source position: jsonscanner.pp line 68
type TJSONOptions = set of ( |
||
joUTF8, |
|
UTF8 string encoding option |
joStrict, |
|
Strict JSON parsing option |
joComments, |
|
Allow comments option |
joIgnoreTrailingComma, |
|
Ignore trailing comma option |
joIgnoreDuplicates, |
|
Ignore duplicate keys option |
joBOMCheck, |
|
Check byte order mark option |
joSingle |
|
Single value parsing option |
); |
Set type that combines multiple TJSONOption values. Used to configure the behavior of the JSON scanner.
|
JSON scanner options |
|
|
Default scanner options |
|
|
JSON lexical scanner |