| 319 | } |
| 320 | |
| 321 | PropertyInfo dict_to_property_info(const Dictionary &p_dict) { |
| 322 | PropertyInfo info = get_pi_from_type(p_dict.get("type", "void"), p_dict.get("name", "")); |
| 323 | info.hint = string_to_property_hint(p_dict.get("property_hint", "NONE")); |
| 324 | info.hint_string = p_dict.get("property_hint_string", ""); |
| 325 | return info; |
| 326 | } |
| 327 | |
| 328 | String replace_variant_constants(const String &p_string) { |
| 329 | String new_string = p_string; |
no test coverage detected