* Walk template literal. * @param {TemplateLiteral} expression template literal
(expression)
| 4009 | * @param {TemplateLiteral} expression template literal |
| 4010 | */ |
| 4011 | walkTemplateLiteral(expression) { |
| 4012 | if (expression.expressions) { |
| 4013 | this.walkExpressions(expression.expressions); |
| 4014 | } |
| 4015 | } |
| 4016 | |
| 4017 | /** |
| 4018 | * Walk tagged template expression. |
no test coverage detected