chumsky-branch License: MIT chumsky-branch on crates.io chumsky-branch on docs.rs Source Code Repository

This crate defines three parsing combinators for the chumsky parsing library:

Example

```rust use chumsky::prelude::; use chumsky_branch::prelude::;

[derive(Debug, Eq, PartialEq)]

enum Token { Placeholder(String), Comment(String), Verbatim(String) }

impl Token { fn lexer() -> impl Parser> { branch( "{{", text::ident().thenignore(just("}}")).map(Self::Placeholder) ) .orbranch( "/", not_containing(["/"]) .thenignore(just("*/")) .map(Self::Comment) ) .orelse(Self::Verbatim) } }

fn lexer() -> impl Parser, Error = Simple> { Token::lexer().repeated().then_ignore(end()) }

let input = "/* Greet the user */Hello {{name}}!"; asserteq!(&lexer().parse(input).unwrap(), &[ Token::Comment(" Greet the user ".toowned()), Token::Verbatim("Hello ".toowned()), Token::Placeholder("name".toowned()), Token::Verbatim("!".to_owned()) ]); ```