mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-28 22:23:21 +01:00
f610d739fe
Templates are now constructed with their precedence. Variables are too, with a tweak to allow for the immediate evaluation of non-topl-level params and vars. The execution context now no longer needs to track variable precedence, which is good because it will be getting it wrong anyway. Corresponding simplifications follow to compliation context.
34 lines
725 B
C++
34 lines
725 B
C++
#ifndef ARABICA_XSLT_PARAM_HPP
|
|
#define ARABICA_XSLT_PARAM_HPP
|
|
|
|
#include "xslt_variable_impl.hpp"
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace XSLT
|
|
{
|
|
|
|
class Param : public Variable_impl
|
|
{
|
|
public:
|
|
Param(const std::string& namespace_uri,
|
|
const std::string& name,
|
|
Arabica::XPath::XPathExpressionPtr<std::string> select,
|
|
const Precedence& precedence) :
|
|
Variable_impl(namespace_uri, name, select, precedence)
|
|
{
|
|
} // Param
|
|
|
|
virtual ~Param() { }
|
|
|
|
protected:
|
|
virtual void execute(const DOM::Node<std::string>& node, ExecutionContext& context) const
|
|
{
|
|
context.declareParam(node, *this);
|
|
} // declare
|
|
}; // Param
|
|
|
|
} // namespace XSLT
|
|
} // namespace Arabica
|
|
#endif
|
|
|