(interaction: NodeInteractionCalled, context: InclusionContext)
| 27 | } |
| 28 | |
| 29 | includeCallArguments(interaction: NodeInteractionCalled, context: InclusionContext): void { |
| 30 | super.includeCallArguments(interaction, context); |
| 31 | if (this.argumentsVariable.included) { |
| 32 | const { args } = interaction; |
| 33 | for (let argumentIndex = 1; argumentIndex < args.length; argumentIndex++) { |
| 34 | const argument = args[argumentIndex]; |
| 35 | if (argument) { |
| 36 | argument.includePath(UNKNOWN_PATH, context); |
| 37 | argument.include(context, false); |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | protected addArgumentToBeDeoptimized(argument: ExpressionEntity) { |
| 44 | this.argumentsVariable.addArgumentToBeDeoptimized(argument); |
nothing calls this directly
no test coverage detected