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

Function parse_assume

tools/alive_parser.cpp:1351–1356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1349}
1350
1351static unique_ptr<Instr> parse_assume() {
1352 tokenizer.ensure(LPAREN);
1353 auto &val = parse_operand(*int_types[1].get());
1354 tokenizer.ensure(RPAREN);
1355 return make_unique<Assume>(val, Assume::AndNonPoison);
1356}
1357
1358static unique_ptr<Instr> parse_return() {
1359 auto &type = parse_type();

Callers 1

parse_fnFunction · 0.85

Calls 2

ensureMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected