dsntk-feel-parser 0.3.0

ÐecisionToolkit | FEEL parser
Documentation
use super::*;

#[test]
fn _0001() {
  let scope = scope!();
  accept(
    &scope,
    StartExpression,
    "null in null",
    r#"
       In
       ├─ Null
       └─ Null
    "#,
    false,
  );
}

#[test]
fn _0002() {
  let scope = scope!();
  accept(
    &scope,
    StartTextualExpression,
    "null in null",
    r#"
       In
       ├─ Null
       └─ Null
    "#,
    false,
  );
}