| Crates.io | secel |
| lib.rs | secel |
| version | 0.0.7 |
| created_at | 2022-11-14 14:41:55.43677+00 |
| updated_at | 2023-11-01 14:51:39.584575+00 |
| description | SECEL parser |
| homepage | |
| repository | https://github.com/wisbery/secel.git |
| max_upload_size | |
| id | 714988 |
| size | 63,771 |
statement = if_expression
;
if_expression = `if` `(` condition `;` expression `;` expression `)`
;
condition = disjunction { `or` disjunction }
;
disjunction = conjunction { `and` conjunction }
;
conjunction = `(` condition `)`
| comparison
;
comparison = value (`=` | `<>` | `>` | `<` | `>=` | `<=`) value
;
expression = value
| if_expression
;
value = NUMBER
| NULL
;
Licensed under either of
at your option.
All contributions intentionally submitted for inclusion in the work by you, shall be dual licensed as above, without any additional terms or conditions.