Klammerset: the @@@klammerset construct, its search path, and const correctness
The @@@klammerset system command formally declares a klammerset — a named, logically related group of klammer definitions — with an operative, idempotent declaration (:requires and :files load in order at the declaration point, relative to the declaring file). A bare symbol given to ktext -k, kdesc --input, or :requires resolves to x/x.k on the search path: the document's directory, then KLAMMERTEXT_KLAMMERSETS, then KLAMMERTEXT_HOME; kdesc --klammerset lists the available sets. sks/sks.k is the first declared klammerset, so `-k sks` loads the SKS by name. The engine's lookup classes were renamed *_set → *_registry to keep the two concepts apart, and the whole C++ tree now follows standard const-correctness conventions. tst/ gains klammerset_test.sh (18 cases). (from dev 64b1abf23e56)
This commit is contained in:
@@ -9,16 +9,16 @@ class Eval_python
|
||||
{
|
||||
public:
|
||||
static std::regex statement_delimiter;
|
||||
explicit Eval_python(Machine& machine, Locator loc);
|
||||
explicit Eval_python(Machine& machine, const Locator& loc);
|
||||
Eval_python(const Eval_python&) = delete;
|
||||
Eval_python& operator=(const Eval_python&) = delete;
|
||||
~Eval_python();
|
||||
void add_module_path(const std::string& path);
|
||||
std::vector<std::string> parse_modules(std::string code);
|
||||
void import_module(std::string module_name, bool verify = true);
|
||||
void import_module(const std::string& module_name, bool verify = true);
|
||||
std::string get_result(PyObject* result_object);
|
||||
std::string eval_expression(std::string expression, bool import_modules = true);
|
||||
std::string eval_statements(std::string script);
|
||||
std::string eval_expression(const std::string& expression, bool import_modules = true);
|
||||
std::string eval_statements(const std::string& script);
|
||||
std::string eval(std::string code);
|
||||
//std::string eval_katom_list(const katom_iter& begin, const katom_iter& end);
|
||||
std::string eval_katom_list(
|
||||
|
||||
Reference in New Issue
Block a user