Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Update internals/syntax.md
  • Loading branch information
bracevac committed Nov 20, 2025
commit df8c615c0194ef536f919aff74a65645a7a2c622
6 changes: 3 additions & 3 deletions docs/_docs/internals/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ TypeBound ::= Type
| CaptureSet -- under captureChecking
NamesAndTypes ::= NameAndType {‘,’ NameAndType}
NameAndType ::= id ':' Type
CaptureSet ::= ‘{’ CaptureRef {‘,’ CaptureRef} ‘}’ -- under captureChecking
CaptureRef ::= { SimpleRef ‘.’ } SimpleRef [‘*’] [CapFilter] [‘.’ ‘rd’] -- under captureChecking
CapFilter ::= ‘.’ ‘as’ ‘[’ QualId ’]’ -- under captureChecking
CaptureSet ::= '{' CaptureRef {',' CaptureRef} '}' -- under captureChecking
CaptureRef ::= { SimpleRef '.' } SimpleRef ['*'] [CapFilter] ['.' 'rd'] -- under captureChecking
CapFilter ::= '.' 'only' '[' QualId ']' -- under captureChecking
```

### Expressions
Expand Down
Loading