(file)
| 152506 | return name; |
| 152507 | } |
| 152508 | function collectFreeIdentifiers(file) { |
| 152509 | var map = ts.createMultiMap(); |
| 152510 | forEachFreeIdentifier(file, function (id) { return map.add(id.text, id); }); |
| 152511 | return map; |
| 152512 | } |
| 152513 | /** |
| 152514 | * A free identifier is an identifier that can be accessed through name lookup as a local variable. |
| 152515 | * In the expression `x.y`, `x` is a free identifier, but `y` is not. |
no test coverage detected