mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
a672edc0d5
This adopts the new function store, replacing the C++ version. It also reimplements builtin_function in Rust, as these was too coupled to the function store to handle in a separate commit.
21 lines
738 B
C++
21 lines
738 B
C++
// Prototypes for functions for storing and retrieving function information. These functions also
|
|
// take care of autoloading functions in the $fish_function_path. Actual function evaluation is
|
|
// taken care of by the parser and to some degree the builtin handling library.
|
|
#ifndef FISH_FUNCTION_H
|
|
#define FISH_FUNCTION_H
|
|
|
|
#include "cxx.h"
|
|
#include "maybe.h"
|
|
|
|
struct function_properties_t;
|
|
class parser_t;
|
|
|
|
#if INCLUDE_RUST_HEADERS
|
|
#include "function.rs.h"
|
|
#endif
|
|
|
|
maybe_t<rust::Box<function_properties_t>> function_get_props(const wcstring &name);
|
|
maybe_t<rust::Box<function_properties_t>> function_get_props_autoload(const wcstring &name,
|
|
parser_t &parser);
|
|
|
|
#endif
|