mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-22 17:55:11 +00:00
b1349f44f6
Found with performance-unnecessary-copy-initialization
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
// Functions for executing the eval builtin.
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
#include <cerrno>
|
|
#include <cstddef>
|
|
|
|
#include "builtin.h"
|
|
#include "common.h"
|
|
#include "exec.h"
|
|
#include "fallback.h" // IWYU pragma: keep
|
|
#include "io.h"
|
|
#include "parser.h"
|
|
#include "proc.h"
|
|
#include "wgetopt.h"
|
|
#include "wutil.h" // IWYU pragma: keep
|
|
|
|
/// Implementation of eval builtin.
|
|
int builtin_eval(parser_t &parser, io_streams_t &streams, wchar_t **argv) {
|
|
int argc = builtin_count_args(argv);
|
|
|
|
wcstring new_cmd;
|
|
for (int i = 1; i < argc; ++i) {
|
|
if (i > 1) new_cmd += L' ';
|
|
new_cmd += argv[i];
|
|
}
|
|
|
|
const auto cached_exec_count = parser.libdata().exec_count;
|
|
int status = STATUS_CMD_OK;
|
|
if (argc > 1) {
|
|
if (parser.eval(new_cmd, *streams.io_chain) != eval_result_t::ok) {
|
|
status = STATUS_CMD_ERROR;
|
|
} else if (cached_exec_count == parser.libdata().exec_count) {
|
|
// Issue #5692, in particular, to catch `eval ""`, `eval "begin; end;"`, etc.
|
|
// where we have an argument but nothing is executed.
|
|
status = STATUS_CMD_OK;
|
|
} else {
|
|
status = parser.get_last_status();
|
|
}
|
|
}
|
|
|
|
return status;
|
|
}
|