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

Method AddAfter

sdk/angelscript/source/as_bytecode.cpp:2935–2943  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2933}
2934
2935void asCByteInstruction::AddAfter(asCByteInstruction *nextCode)
2936{
2937 if( next )
2938 next->prev = nextCode;
2939
2940 nextCode->next = next;
2941 nextCode->prev = this;
2942 next = nextCode;
2943}
2944
2945void asCByteInstruction::AddBefore(asCByteInstruction *prevCode)
2946{

Callers 1

AddInstructionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected