(path: ObjectPath, context: InclusionContext)
| 29 | } |
| 30 | |
| 31 | includePath(path: ObjectPath, context: InclusionContext) { |
| 32 | super.includePath(path, context); |
| 33 | for (const argument of this.deoptimizedArguments!) { |
| 34 | argument.deoptimizePath(UNKNOWN_PATH); |
| 35 | } |
| 36 | this.deoptimizedArguments!.length = 0; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | function addArgumentToBeDeoptimized(this: ArgumentsVariable, argument: ExpressionEntity) { |
nothing calls this directly
no test coverage detected