* Get the name of the symbol represented by the given expression node, or `null` if it is not a * symbol.
()
| 231 | * symbol. |
| 232 | */ |
| 233 | getSymbolName(): string | null { |
| 234 | return this.host.getSymbolName(this.expression); |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * Is this value a number? |
nothing calls this directly
no test coverage detected