JSON scanner options
Source position: jsonscanner.pp line 60
type TJSONOption = ( |
||
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 |
); |
Enumeration of options that control the behavior of the JSON scanner. These options can be combined in a TJSONOptions set.
|
Set of JSON scanner options |
|
|
Default scanner options |
|
|
JSON lexical scanner |