** Mark that current block has a to-be-closed variable. */
| 461 | ** Mark that current block has a to-be-closed variable. |
| 462 | */ |
| 463 | static void marktobeclosed (FuncState *fs) { |
| 464 | BlockCnt *bl = fs->bl; |
| 465 | bl->upval = 1; |
| 466 | bl->insidetbc = 1; |
| 467 | fs->needclose = 1; |
| 468 | } |
| 469 | |
| 470 | |
| 471 | /* |
no outgoing calls
no test coverage detected