| 374 | } |
| 375 | |
| 376 | NodePath NodePath::simplified() const { |
| 377 | NodePath np = *this; |
| 378 | np.simplify(); |
| 379 | return np; |
| 380 | } |
| 381 | |
| 382 | NodePath::NodePath(const Vector<StringName> &p_path, bool p_absolute) { |
| 383 | if (p_path.is_empty() && !p_absolute) { |
no test coverage detected