Module gherkin_rust::tagexpr[][src]

Tag expressions

You can read about tag expressions in the Cucumber documentation.

This implements the parsing apparatus for these expressions so that other crates like cucumber_rust may take advantage of them.

Usage

use gherkin_rust::tagexpr::TagOperation;
let op: TagOperation = "@a and @b".parse()?;

Enums

TagOperation

A parsed tree of operations for Gherkin tags.