MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / parse_or

Method parse_or

crates/hll-to-ir/src/parser.rs:717–729  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

715
716 if self.match_comma() {
717 if self.check_rparen() {
718 break;
719 }
720 continue;
721 }
722
723 break;
724 }
725
726 self.expect_rparen()?;
727 Ok(params)
728 }
729
730 fn parse_return_type(&mut self) -> Result<ReturnType, ParserError> {
731 Ok(ReturnType::Single(self.parse_type()?))
732 }

Callers 1

parse_assignmentMethod · 0.80

Calls 3

parse_andMethod · 0.80
match_orMethod · 0.80
consume_terminatorsMethod · 0.80

Tested by

no test coverage detected