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:
@@ -7,7 +7,7 @@
|
||||
#include "argument.h"
|
||||
#include "locator.h"
|
||||
|
||||
class Argtype_set;
|
||||
class Argtype_registry;
|
||||
|
||||
std::tuple<std::vector<std::vector<Katom>>,std::vector<std::vector<Katom>>,std::vector<Katom>>
|
||||
argument_split(std::vector<Katom>::const_iterator kbegin, std::vector<Katom>::const_iterator kend,
|
||||
@@ -20,9 +20,9 @@ public:
|
||||
~Parameter_set() = default;
|
||||
Parameter_set(const std::string parameter_string);
|
||||
Parameter_set(const std::vector<Katom>& katoms);
|
||||
Parameter_set(const std::vector<Katom>& katoms, const Argtype_set& argtypes);
|
||||
Parameter_set(const std::vector<Katom>& katoms, const Argtype_registry& argtypes);
|
||||
|
||||
void parse_parameters(const std::vector<Katom>& katoms, const Argtype_set& argtypes);
|
||||
void parse_parameters(const std::vector<Katom>& katoms, const Argtype_registry& argtypes);
|
||||
void describe_parameters();
|
||||
|
||||
void check_positional(
|
||||
@@ -40,7 +40,7 @@ public:
|
||||
bool empty() const { return m_katoms.size() == 0; };
|
||||
|
||||
std::vector<Katom> m_katoms {};
|
||||
//Argtype_set m_argtypes {};
|
||||
//Argtype_registry m_argtypes {};
|
||||
std::vector<Parameter> m_positional {};
|
||||
std::vector<Parameter> m_optional {};
|
||||
std::vector<std::string> m_optional_names {};
|
||||
@@ -56,10 +56,10 @@ bool operator==(Parameter_set lhs, Parameter_set rhs);
|
||||
using Argument_set = Parameter_set;
|
||||
|
||||
void describe_arguments(
|
||||
std::string label,
|
||||
std::vector<std::vector<Katom>> positional,
|
||||
std::vector<std::vector<Katom>> optional,
|
||||
std::vector<Katom> rest);
|
||||
const std::string& label,
|
||||
const std::vector<std::vector<Katom>>& positional,
|
||||
const std::vector<std::vector<Katom>>& optional,
|
||||
const std::vector<Katom>& rest);
|
||||
|
||||
std::string replace_arguments(
|
||||
const std::map<std::string, std::string>& values,
|
||||
|
||||
Reference in New Issue
Block a user