(reservedInNestedScopes)
| 22993 | /** Create a unique temporary variable for use in a loop. */ |
| 22994 | // @api |
| 22995 | function createLoopVariable(reservedInNestedScopes) { |
| 22996 | var flags = 2 /* GeneratedIdentifierFlags.Loop */; |
| 22997 | if (reservedInNestedScopes) |
| 22998 | flags |= 8 /* GeneratedIdentifierFlags.ReservedInNestedScopes */; |
| 22999 | return createBaseGeneratedIdentifier("", flags); |
| 23000 | } |
| 23001 | /** Create a unique name based on the supplied text. */ |
| 23002 | // @api |
| 23003 | function createUniqueName(text, flags) { |
nothing calls this directly
no test coverage detected