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

Method parse_bitwise_and

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

Source from the content-addressed store, hash-verified

771 let end = self.parse_expression()?;
772 ForIter::Range {
773 start: first,
774 end,
775 inclusive: true,
776 }
777 } else if self.match_dot_dot() {
778 let end = self.parse_expression()?;
779 ForIter::Range {
780 start: first,
781 end,
782 inclusive: false,
783 }
784 } else {
785 // No range operator: iterate the expression's elements.
786 ForIter::Each(first)
787 };
788 let body = self.parse_block()?;

Callers 1

parse_bitwise_xorMethod · 0.80

Calls 3

parse_equalityMethod · 0.80
match_bitwise_andMethod · 0.80
consume_terminatorsMethod · 0.80

Tested by

no test coverage detected