(state: &EditorState, node_type: perro_scene::NodeType)
| 1347 | tags.push(tag.to_string()); |
| 1348 | } |
| 1349 | } else { |
| 1350 | text.push(token.to_string()); |
| 1351 | } |
| 1352 | } |
| 1353 | Self { text, tags } |
| 1354 | } |
| 1355 | |
| 1356 | pub fn is_empty(&self) -> bool { |
| 1357 | self.text.is_empty() && self.tags.is_empty() |
| 1358 | } |
| 1359 | } |
no test coverage detected