(&mut self, ctx: &BoolFalseContext<'_>)
| 1036 | } |
| 1037 | |
| 1038 | fn visit_BoolFalse(&mut self, ctx: &BoolFalseContext<'_>) -> Self::Return { |
| 1039 | match ctx.tok.as_deref() { |
| 1040 | Some(token) => self |
| 1041 | .helper |
| 1042 | .next_expr(token, Expr::Literal(LiteralValue::Boolean(false.into()))), |
| 1043 | None => self.report_error::<ParseError, _>(&ctx.start(), None, "Incomplete bool!"), |
| 1044 | } |
| 1045 | } |
| 1046 | |
| 1047 | fn visit_Null(&mut self, ctx: &NullContext<'_>) -> Self::Return { |
| 1048 | match ctx.tok.as_deref() { |