Saves number of defined variables and functions
| 402 | |
| 403 | // Saves number of defined variables and functions |
| 404 | void BeginBlock() |
| 405 | { |
| 406 | varInfoTop.push_back(VarTopInfo((unsigned int)CodeInfo::varInfo.size(), varTop)); |
| 407 | funcInfoTop.push_back((unsigned int)CodeInfo::funcInfo.size()); |
| 408 | } |
| 409 | // Restores previous number of defined variables and functions to hide those that lost visibility |
| 410 | void EndBlock(bool hideFunctions, bool saveLocals) |
| 411 | { |
no test coverage detected