| 3491 | } |
| 3492 | |
| 3493 | NodePath Node::get_import_path() const { |
| 3494 | #ifdef TOOLS_ENABLED |
| 3495 | return data.import_path; |
| 3496 | #else |
| 3497 | return NodePath(); |
| 3498 | #endif |
| 3499 | } |
| 3500 | |
| 3501 | #ifdef TOOLS_ENABLED |
| 3502 | static void _add_nodes_to_options(const Node *p_base, const Node *p_node, List<String> *r_options) { |
no test coverage detected