clarify comments

And throw instead of return null for invalid settings.
This commit is contained in:
Christopher Dunn 2015-02-10 23:03:27 -06:00
parent 7796f20eab
commit 29501c4d9f
3 changed files with 14 additions and 7 deletions

View File

@ -299,10 +299,17 @@ public:
These are case-sensitive. These are case-sensitive.
Available settings (case-sensitive): Available settings (case-sensitive):
- "collectComments": false or true - "collectComments": false or true
- "allowComments" - true to collect comment and allow writing them
- "strictRoot" back during serialization, false to discard comments.
- "allowDroppedNullPlaceholders" This parameter is ignored if allowComments is false.
- "allowNumericKeys" - "allowComments": false or true
- true if comments are allowed.
- "strictRoot": false or true
- true if root must be either an array or an object value
- "allowDroppedNullPlaceholders": false or true
- true if dropped null placeholders are allowed. (See StreamWriterBuilder.)
- "allowNumericKeys": false or true
- true if numeric object keys are allowed.
You can examine 'settings_` yourself You can examine 'settings_` yourself
to see the defaults. You can also write and read them just like any to see the defaults. You can also write and read them just like any

View File

@ -92,9 +92,9 @@ public:
Available settings (case-sensitive): Available settings (case-sensitive):
- "commentStyle": "None" or "All" - "commentStyle": "None" or "All"
- "indentation": "<anything>" - "indentation": "<anything>"
- "enableYAMLCompatibility": False or True - "enableYAMLCompatibility": false or true
- slightly change the whitespace around colons - slightly change the whitespace around colons
- "dropNullPlaceholders": False or True - "dropNullPlaceholders": false or true
- Drop the "null" string from the writer's output for nullValues. - Drop the "null" string from the writer's output for nullValues.
Strictly speaking, this is not valid JSON. But when the output is being Strictly speaking, this is not valid JSON. But when the output is being
fed to a browser's Javascript, it makes for smaller output and the fed to a browser's Javascript, it makes for smaller output and the

View File

@ -981,7 +981,7 @@ StreamWriter* StreamWriterBuilder::newStreamWriter() const
} else if (cs_str == "None") { } else if (cs_str == "None") {
cs = CommentStyle::None; cs = CommentStyle::None;
} else { } else {
return NULL; throw std::runtime_error("commentStyle must be 'All' or 'None'");
} }
std::string colonSymbol = " : "; std::string colonSymbol = " : ";
if (eyc) { if (eyc) {