| 50 | } |
| 51 | |
| 52 | void WidgetParser::construct(Json const& config, Widget* widget) { |
| 53 | m_pane = dynamic_cast<Pane*>(widget); |
| 54 | constructImpl(config, widget); |
| 55 | } |
| 56 | |
| 57 | void WidgetParser::constructImpl(Json const& config, Widget* widget) { |
| 58 | List<WidgetConstructResult> widgets = constructor(config); |
no outgoing calls
no test coverage detected