MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / compileBlock

Function compileBlock

Engine/source/console/astNodes.cpp:48–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46namespace Compiler
47{
48 U32 compileBlock(StmtNode *block, CodeStream &codeStream, U32 ip)
49 {
50 for(StmtNode *walk = block; walk; walk = walk->getNext())
51 ip = walk->compileStmt(codeStream, ip);
52 return codeStream.tell();
53 }
54}
55
56using namespace Compiler;

Callers 3

compileStmtMethod · 0.85
compileMethod · 0.85
compileExecMethod · 0.85

Calls 3

compileStmtMethod · 0.80
getNextMethod · 0.45
tellMethod · 0.45

Tested by

no test coverage detected