** Mark that current block has a to-be-closed variable. */
| 420 | ** Mark that current block has a to-be-closed variable. |
| 421 | */ |
| 422 | static void marktobeclosed (FuncState *fs) { |
| 423 | BlockCnt *bl = fs->bl; |
| 424 | bl->upval = 1; |
| 425 | bl->insidetbc = 1; |
| 426 | fs->needclose = 1; |
| 427 | } |
| 428 | |
| 429 | |
| 430 | /* |
no outgoing calls
no test coverage detected