use combine::parser::char::spaces;
use combine::parser::char::string;
use combine::{attempt, ParseError, Parser};
use crate::expr::Expr;
use crate::parser::errors::RibParseError;
use crate::rib_source_span::GetSourcePosition;
pub fn boolean_literal<Input>() -> impl Parser<Input, Output = Expr>
where
Input: combine::Stream<Token = char>,
RibParseError: Into<
<Input::Error as ParseError<Input::Token, Input::Range, Input::Position>>::StreamError,
>,
Input::Position: GetSourcePosition,
{
attempt(string("true"))
.map(|_| Expr::boolean(true))
.or(attempt(string("false")).map(|_| Expr::boolean(false)))
.skip(spaces())
.message("Unable to parse boolean literal")
}
#[cfg(test)]
mod tests {
use test_r::test;
use super::*;
#[test]
fn test_boolean_true() {
let input = "true";
let result = Expr::from_text(input);
assert_eq!(result, Ok(Expr::boolean(true)));
}
#[test]
fn test_boolean_false() {
let input = "false";
let result = Expr::from_text(input);
assert_eq!(result, Ok(Expr::boolean(false)));
}
#[test]
fn test_boolean_with_spaces() {
let input = "true ";
let result = Expr::from_text(input);
assert_eq!(result, Ok(Expr::boolean(true)));
}
}