| 1336 | } |
| 1337 | |
| 1338 | TypedArray<Node> EditorSelection::get_selected_nodes() { |
| 1339 | TypedArray<Node> ret; |
| 1340 | |
| 1341 | for (const KeyValue<Node *, Object *> &E : selection) { |
| 1342 | ret.push_back(E.key); |
| 1343 | } |
| 1344 | |
| 1345 | return ret; |
| 1346 | } |
| 1347 | |
| 1348 | const List<Node *> &EditorSelection::get_top_selected_node_list() { |
| 1349 | if (changed) { |
no test coverage detected