MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / GetStaticStorage

Method GetStaticStorage

src/hx/Class.cpp:298–309  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

296
297
298const hx::StaticInfo* Class_obj::GetStaticStorage(String inName)
299{
300 if (mStaticStorageInfo)
301 {
302 for(const StaticInfo *s = mStaticStorageInfo; s->address; s++)
303 {
304 if (s->name == inName)
305 return s;
306 }
307 }
308 return 0;
309}
310
311
312#endif

Callers 1

linkMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected