* Pop the current name generation scope.
(node)
| 114347 | * Pop the current name generation scope. |
| 114348 | */ |
| 114349 | function popNameGenerationScope(node) { |
| 114350 | if (node && ts.getEmitFlags(node) & 524288 /* EmitFlags.ReuseTempVariableScope */) { |
| 114351 | return; |
| 114352 | } |
| 114353 | tempFlags = tempFlagsStack.pop(); |
| 114354 | reservedNames = reservedNamesStack.pop(); |
| 114355 | } |
| 114356 | function reserveNameInNestedScopes(name) { |
| 114357 | if (!reservedNames || reservedNames === ts.lastOrUndefined(reservedNamesStack)) { |
| 114358 | reservedNames = new ts.Set(); |
no test coverage detected