MCPcopy Create free account
hub / github.com/AliveToolkit/alive2 / error

Function error

tools/alive_parser.cpp:29–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27namespace tools {
28
29static void error(string &&s) {
30 throw ParseException(std::move(s), yylineno);
31}
32
33static void error(const char *s, token t) {
34 throw ParseException(string(s) + "; got: " + token_name[t], yylineno);

Callers 5

ensureMethod · 0.70
parse_predicateFunction · 0.70
alive_parser.cppFile · 0.70
parse_fcmpFunction · 0.70
parse_fnFunction · 0.70

Calls 1

ParseExceptionClass · 0.85

Tested by

no test coverage detected