| 703 | std::string def; |
| 704 | |
| 705 | string(node* owner, std::string name, std::string def = {}, bool dynamic = false) |
| 706 | : _base(type::string, owner, std::move(name), dynamic), m_value(def), def(std::move(def)) |
| 707 | { |
| 708 | } |
| 709 | |
| 710 | operator std::string() const |
| 711 | { |
no outgoing calls
no test coverage detected