Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/conditional-compilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ ConfigurationPredicate ->
| ConfigurationAll
| ConfigurationAny
| ConfigurationNot
| `true`
| `false`

ConfigurationOption ->
IDENTIFIER ( `=` ( STRING_LITERAL | RAW_STRING_LITERAL ) )?
Expand Down Expand Up @@ -50,6 +52,9 @@ r[cfg.predicate.any]
r[cfg.predicate.not]
* `not()` with a configuration predicate. It is true if its predicate is false and false if its predicate is true.

r[cfg.predicate.literal]
* `true` or `false` literals, which are always true or false respectively.

r[cfg.option-spec]
_Configuration options_ are either names or key-value pairs, and are either set or unset.

Expand Down