MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / get_dependencies

Method get_dependencies

modules/gdscript/gdscript.cpp:1265–1272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1263}
1264
1265RBSet<GDScript *> GDScript::get_dependencies() {
1266 RBSet<GDScript *> dependencies;
1267
1268 _collect_dependencies(dependencies, this);
1269 dependencies.erase(this);
1270
1271 return dependencies;
1272}
1273
1274HashMap<GDScript *, RBSet<GDScript *>> GDScript::get_all_dependencies() {
1275 HashMap<GDScript *, RBSet<GDScript *>> all_dependencies;

Callers 1

get_all_dependenciesMethod · 0.45

Calls 6

get_as_utf8_stringMethod · 0.80
eraseMethod · 0.45
is_nullMethod · 0.45
is_emptyMethod · 0.45
parseMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected