Converts a StringProperty node to JSON format.
(node)
| 304 | |
| 305 | |
| 306 | def __convert_string(node): |
| 307 | """Converts a StringProperty node to JSON format.""" |
| 308 | converted = __convert_node(node, default_flags=vsflags(VSFlags.UserValue)) |
| 309 | |
| 310 | return __check_for_flag(converted) |
| 311 | |
| 312 | |
| 313 | def __convert_node(node, default_value='', default_flags=vsflags()): |
nothing calls this directly
no test coverage detected
searching dependent graphs…