fish-shell/parse_exec.h

23 lines
361 B
C
Raw Normal View History

/**\file parse_exec.h
Programmatic execution of a parse tree
*/
2013-06-11 16:37:51 +00:00
#ifndef FISH_PARSE_EXEC_H
#define FISH_PARSE_EXEC_H
#include "parse_tree.h"
2013-06-11 16:37:51 +00:00
class parse_exec_t;
class parse_execution_context_t
{
parse_exec_t *ctx;
public:
parse_execution_context_t(const parse_node_tree_t &n, const wcstring &s);
wcstring simulate(void);
};
#endif