79 lines
No EOL
3.8 KiB
C++
79 lines
No EOL
3.8 KiB
C++
/** @file ISyntaxStateMachine_DExpectFormalArgSsm.hpp
|
|
*
|
|
* Generated automagically from ingredients:
|
|
* 1. code generator:
|
|
* [xo-facet/codegen/genfacet]
|
|
* arguments:
|
|
* --input [idl/ISyntaxStateMachine_DExpectFormalArgSsm.json5]
|
|
* 2. jinja2 template for abstract facet .hpp file:
|
|
* [iface_facet_repr.hpp.j2]
|
|
* 3. idl for facet methods
|
|
* [idl/ISyntaxStateMachine_DExpectFormalArgSsm.json5]
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include "SyntaxStateMachine.hpp"
|
|
#include "SyntaxStateMachine.hpp"
|
|
#include "ssm/ISyntaxStateMachine_Xfer.hpp"
|
|
#include "DExpectFormalArgSsm.hpp"
|
|
|
|
namespace xo { namespace scm { class ISyntaxStateMachine_DExpectFormalArgSsm; } }
|
|
|
|
namespace xo {
|
|
namespace facet {
|
|
template <>
|
|
struct FacetImplementation<xo::scm::ASyntaxStateMachine,
|
|
xo::scm::DExpectFormalArgSsm>
|
|
{
|
|
using ImplType = xo::scm::ISyntaxStateMachine_Xfer
|
|
<xo::scm::DExpectFormalArgSsm,
|
|
xo::scm::ISyntaxStateMachine_DExpectFormalArgSsm>;
|
|
};
|
|
}
|
|
}
|
|
|
|
namespace xo {
|
|
namespace scm {
|
|
/** @class ISyntaxStateMachine_DExpectFormalArgSsm
|
|
**/
|
|
class ISyntaxStateMachine_DExpectFormalArgSsm {
|
|
public:
|
|
/** @defgroup scm-syntaxstatemachine-dexpectformalargssm-type-traits **/
|
|
///@{
|
|
using TypeDescr = xo::scm::ASyntaxStateMachine::TypeDescr;
|
|
using Copaque = xo::scm::ASyntaxStateMachine::Copaque;
|
|
using Opaque = xo::scm::ASyntaxStateMachine::Opaque;
|
|
///@}
|
|
/** @defgroup scm-syntaxstatemachine-dexpectformalargssm-methods **/
|
|
///@{
|
|
// const methods
|
|
/** identify a type of syntax state machine **/
|
|
static syntaxstatetype ssm_type(const DExpectFormalArgSsm & self) noexcept;
|
|
/** text describing expected/allowed input to this ssm in current state **/
|
|
static std::string_view get_expect_str(const DExpectFormalArgSsm & self) noexcept;
|
|
|
|
// non-const methods
|
|
/** operate state machine for incoming token @p tk **/
|
|
static void on_token(DExpectFormalArgSsm & self, const Token & tk, ParserStateMachine * p_psm);
|
|
/** update stat machine for incoming parsed symbol @p sym **/
|
|
static void on_parsed_symbol(DExpectFormalArgSsm & self, std::string_view sym, ParserStateMachine * p_psm);
|
|
/** operate state machine for incoming type description @p td **/
|
|
static void on_parsed_typedescr(DExpectFormalArgSsm & self, TypeDescr td, ParserStateMachine * p_psm);
|
|
/** operate state machine for formal emitted by nested ssm **/
|
|
static void on_parsed_formal(DExpectFormalArgSsm & self, const DUniqueString * param_name, TypeDescr param_type, ParserStateMachine * p_psm);
|
|
/** operate state machine for formal emitted by nested ssm **/
|
|
static void on_parsed_formal_with_token(DExpectFormalArgSsm & self, const DUniqueString * param_name, TypeDescr param_type, const Token & tk, ParserStateMachine * p_psm);
|
|
/** consume formal arglist emitted by nested ssm **/
|
|
static void on_parsed_formal_arglist(DExpectFormalArgSsm & self, DArray * arglist, ParserStateMachine * p_psm);
|
|
/** update state machine for incoming parsed expression @p expr **/
|
|
static void on_parsed_expression(DExpectFormalArgSsm & self, obj<AExpression> expr, ParserStateMachine * p_psm);
|
|
/** update state machine @p p_psm for incoming parsed expression @p expr followed by token @p tk **/
|
|
static void on_parsed_expression_with_token(DExpectFormalArgSsm & self, obj<AExpression> expr, const Token & tk, ParserStateMachine * p_psm);
|
|
///@}
|
|
};
|
|
|
|
} /*namespace scm*/
|
|
} /*namespace xo*/
|
|
|
|
/* end */ |