| 40 | } |
| 41 | |
| 42 | void ConfigWriter::EmitArrayItems(std::ostream& fp, int indentLevel, const Array::Ptr& val) |
| 43 | { |
| 44 | bool first = true; |
| 45 | |
| 46 | ObjectLock olock(val); |
| 47 | for (const Value& item : val) { |
| 48 | if (first) |
| 49 | first = false; |
| 50 | else |
| 51 | fp << ", "; |
| 52 | |
| 53 | EmitValue(fp, indentLevel, item); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | void ConfigWriter::EmitScope(std::ostream& fp, int indentLevel, const Dictionary::Ptr& val, |
| 58 | const Array::Ptr& imports, bool splitDot) |
nothing calls this directly
no outgoing calls
no test coverage detected