MCPcopy Index your code
hub / github.com/aiscriptdev/aiscript / or

Method or

aiscript-vm/src/parser/mod.rs:1711–1719  ·  view source on GitHub ↗
(&mut self, _can_assign: bool)

Source from the content-addressed store, hash-verified

1709 }
1710
1711 fn or(&mut self, _can_assign: bool) -> Option<Expr<'gc>> {
1712 let left = Box::new(self.previous_expr.take()?);
1713 let right = Box::new(self.parse_precedence(Precedence::Or)?);
1714 Some(Expr::Or {
1715 left,
1716 right,
1717 line: self.previous.line,
1718 })
1719 }
1720
1721 fn argument_list(&mut self) -> Option<(Vec<Expr<'gc>>, HashMap<String, Expr<'gc>>)> {
1722 let mut arguments = Vec::new();

Callers

nothing calls this directly

Calls 1

parse_precedenceMethod · 0.80

Tested by

no test coverage detected