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
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The syntax is trivially parsable (and consequently customizable). By default, th
| Symbol | Description | Example |
| ------- | ----------------- | ---------- |
| `-` | Advance time | `"a--b--"` |
| `|` | Termination | `"ab-|"` |
| `\|` | Termination | `"ab-\|"` |
| `^` | Thrown error | `"ab-^"` |
| `;` | Cancellation | `"ab;-"` |
| `[` | Begin group | `"[ab]-"` |
Expand Down Expand Up @@ -218,15 +218,15 @@ Access to the validation diagram input list is done through calls such as `$0.in
| Symbol | Token | Description | Example |
| ------- | ------------------------- | ----------------- | ---------- |
| `-` | `.step` | Advance time | `"a--b--"` |
| `|` | `.finish` | Termination | `"ab-|"` |
| `\|` | `.finish` | Termination | `"ab-\|"` |
| `^` | `.error` | Thrown error | `"ab-^"` |
| `;` | `.cancel` | Cancellation | `"ab;-"` |
| `[` | `.beginGroup` | Begin group | `"[ab]-"` |
| `]` | `.endGroup` | End group | `"[ab]-"` |
| `'` | `.beginValue` `.endValue` | Begin/End Value | `"'foo'-"` |
| `,` | `.delayNext` | Delay next | `",[a,]b"` |
| ` ` | `.skip` | Skip/Ignore | `"a b- |"` |
| | `.value` | Values. | `"ab-|"` |
| ` ` | `.skip` | Skip/Ignore | `"a b- \|"` |
| | `.value` | Values. | `"ab-\|"` |

There are some diagram input specifications that are not valid. The three cases are:

Expand Down