MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / popFixScope

Method popFixScope

Engine/source/console/compiler.h:449–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

447 }
448
449 inline void popFixScope()
450 {
451 AssertFatal(mFixStack.size() > 0, "Fix stack mismatch");
452
453 U32 newSize = mFixStack[mFixStack.size() - 1];
454 while (mFixList.size() > newSize)
455 mFixList.pop_back();
456 mFixStack.pop_back();
457 mFixLoopStack.pop_back();
458 }
459
460 void fixLoop(U32 loopBlockStart, U32 breakPoint, U32 continuePoint);
461

Callers 1

compileStmtMethod · 0.80

Calls 2

sizeMethod · 0.45
pop_backMethod · 0.45

Tested by

no test coverage detected