MCPcopy Create free account
hub / github.com/boostorg/parser / call

Method call

include/boost/parser/parser.hpp:4842–4863  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4840 typename Context,
4841 typename SkipParser>
4842 detail::nope call(
4843 Iter & first,
4844 Sentinel last,
4845 Context const & context,
4846 SkipParser const & skip,
4847 detail::flags flags,
4848 bool & success) const
4849 {
4850#if BOOST_PARSER_DO_TRACE
4851 [[maybe_unused]] auto _ = detail::scoped_trace(
4852 *this, first, last, context, flags, detail::global_nope);
4853#endif
4854
4855 parser_.call(
4856 first,
4857 last,
4858 context,
4859 skip,
4860 detail::disable_attrs(flags),
4861 success);
4862 return {};
4863 }
4864
4865 template<
4866 typename Iter,

Callers

nothing calls this directly

Calls 2

scoped_traceFunction · 0.85
callMethod · 0.45

Tested by

no test coverage detected