| 922 | } |
| 923 | |
| 924 | void GDScript::get_constants(HashMap<StringName, Variant> *p_constants) { |
| 925 | if (p_constants) { |
| 926 | for (const KeyValue<StringName, Variant> &E : constants) { |
| 927 | (*p_constants)[E.key] = E.value; |
| 928 | } |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | void GDScript::get_members(HashSet<StringName> *p_members) { |
| 933 | if (p_members) { |
no outgoing calls
no test coverage detected