MCPcopy Create free account
hub / github.com/anjo76/angelscript / GetSize

Method GetSize

sdk/angelscript/source/as_bytecode.cpp:1588–1600  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1586}
1587
1588int asCByteCode::GetSize()
1589{
1590 int size = 0;
1591 asCByteInstruction *instr = first;
1592 while( instr )
1593 {
1594 size += instr->GetSize();
1595
1596 instr = instr->next;
1597 }
1598
1599 return size;
1600}
1601
1602void asCByteCode::AddCode(asCByteCode *bc)
1603{

Callers 4

FindLabelMethod · 0.45
ResolveJumpAddressesMethod · 0.45
OutputMethod · 0.45
DebugOutputMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected