dsntk-feel-parser 0.2.0

dsntk | DecisionToolkit | FEEL parser
Documentation
use super::super::*;

#[test]
fn _0001() {
  let scope = scope!();
  accept(
    &scope,
    StartExpression,
    "exp(100000000000000000000000000000)",
    r#"
       FunctionInvocation
       ├─ Name
       │  └─ `exp`
       └─ PositionalParameters
          └─ Numeric
             └─ `100000000000000000000000000000`
    "#,
    false,
  );
}