|
|
@@ -204,7 +204,7 @@ Each item is one of: |
|
|
|
* `TERMINAL` |
|
|
|
* `"string literal"` or `/regexp literal/` |
|
|
|
* `(item item ..)` - Group items |
|
|
|
* `[item item ..]` - Maybe. Same as `(item item ..)?`, but generates `None` if there is no match |
|
|
|
* `[item item ..]` - Maybe. Same as `(item item ..)?`, but when `maybe_placeholders=True`, generates `None` if there is no match. |
|
|
|
* `item?` - Zero or one instances of item ("maybe") |
|
|
|
* `item*` - Zero or more instances of item |
|
|
|
* `item+` - One or more instances of item |
|
|
|