We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
So the following case does not seem to get classified as a FunctionCall
module_cov = module_cov.get_coverage() test_result = [StratResult(src_file, self.test_input.path)] improved, failed, no_improve = await self.evaluator( ## <<< does not recognize this as a FunctionCall test_result, self.test_input, module_cov, self.test_input.test_file, n_times=n_times, )
Defined as follows:
self.strat: BaseStrategy = AUGMENT_STRATS[strat](self.src_repo, self.test_input) self.evaluator: Evaluator = AUGMENT_EVALS[evaluator]( self.repo_name, self.src_repo, self.run_args, test_input, self.run_test, use_cache = self.use_cache, delete_last = self.delete_last ) self.model_name = model
So the following case does not seem to get classified as a FunctionCall
Defined as follows: