MCPcopy Create free account
hub / github.com/defold/defold / StackPush

Function StackPush

engine/script/src/script_table.cpp:316–321  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

314 }
315
316 static void StackPush(dmArray<const void*>& table_stack, const void* p)
317 {
318 if (table_stack.Full())
319 table_stack.OffsetCapacity(8);
320 table_stack.Push(p);
321 }
322
323 static const void* StackPop(dmArray<const void*>& table_stack)
324 {

Callers 2

DoCheckTableSizeFunction · 0.85
DoCheckTableFunction · 0.85

Calls 3

FullMethod · 0.45
OffsetCapacityMethod · 0.45
PushMethod · 0.45

Tested by

no test coverage detected