40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
// Copyright (c) 2014-2016 Dr. Colin Hirsch and Daniel Frey
|
|
// Please see LICENSE for license or visit https://github.com/ColinH/PEGTL/
|
|
|
|
#ifndef TAO_CPP_PEGTL_INTERNAL_RAISE_HH
|
|
#define TAO_CPP_PEGTL_INTERNAL_RAISE_HH
|
|
|
|
#include <cstdlib>
|
|
#include <type_traits>
|
|
|
|
#include "skip_control.hh"
|
|
|
|
#include "../apply_mode.hh"
|
|
#include "../analysis/generic.hh"
|
|
|
|
namespace tao_json_pegtl
|
|
{
|
|
namespace internal
|
|
{
|
|
template< typename T >
|
|
struct raise
|
|
{
|
|
using analyze_t = analysis::generic< analysis::rule_type::ANY >;
|
|
|
|
template< apply_mode A, template< typename ... > class Action, template< typename ... > class Control, typename Input, typename ... States >
|
|
static bool match( Input & in, States && ... st )
|
|
{
|
|
Control< T >::raise( const_cast< const Input & >( in ), st ... );
|
|
std::abort(); // LCOV_EXCL_LINE
|
|
}
|
|
};
|
|
|
|
template< typename T >
|
|
struct skip_control< raise< T > > : std::true_type {};
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace tao_json_pegtl
|
|
|
|
#endif
|