Sha256: ccf887013552734fd95cb5786517cf81045ea900854bf6867b2af701ec82c3a5

Contents?: true

Size: 249 Bytes

Versions: 2

Compression:

Stored size: 249 Bytes

Contents

bool_expr:
  - bool_and
  - bool_or
  - bool_not
  - var_ref
  - bool_lit
bool_and:
  - [ bool_expr+ ]
bool_or:
  - [ bool_expr+ ]
bool_not:
  - [ bool_expr ]
var_ref:
  - [ var_name ]
var_name:
  !ruby/regexp /^[a-z]+$/
bool_lit:
  - true
  - false

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
sexpr-0.2.0 spec/bool_expr.yml
sexp_grammar-0.1.0 spec/bool_expr.yml