(this: ArgumentsVariable, argument: ExpressionEntity)
| 38 | } |
| 39 | |
| 40 | function addArgumentToBeDeoptimized(this: ArgumentsVariable, argument: ExpressionEntity) { |
| 41 | if (this.included) { |
| 42 | argument.deoptimizePath(UNKNOWN_PATH); |
| 43 | } else { |
| 44 | this.deoptimizedArguments?.push(argument); |
| 45 | } |
| 46 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…