| 2731 | } |
| 2732 | |
| 2733 | static bool overrides_external_editor(Object *p_object) { |
| 2734 | Script *script = Object::cast_to<Script>(p_object); |
| 2735 | |
| 2736 | if (!script) { |
| 2737 | return false; |
| 2738 | } |
| 2739 | |
| 2740 | return script->get_language()->overrides_external_editor(); |
| 2741 | } |
| 2742 | |
| 2743 | void EditorNode::_add_to_history(const Object *p_object, const String &p_property, bool p_inspector_only) { |
| 2744 | ObjectID id = p_object->get_instance_id(); |
no test coverage detected