(tag string, key string, comp **ComponentImpl)
| 310 | } |
| 311 | |
| 312 | func (r *RootElem) createComp(tag string, key string, comp **ComponentImpl) { |
| 313 | *comp = &ComponentImpl{WaveId: uuid.New().String(), Tag: tag, Key: key} |
| 314 | r.CompMap[(*comp).WaveId] = *comp |
| 315 | } |
| 316 | |
| 317 | func (r *RootElem) renderText(text string, comp **ComponentImpl) { |
| 318 | if (*comp).Text != text { |