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

Function compileBlock

Engine/source/console/astNodes.cpp:47–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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