Skip to content

docs: small simplification and added comments in the mangling grammar doc. #13262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 5, 2017
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
6 changes: 2 additions & 4 deletions docs/ABI/Mangling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,11 @@ Entities
entity-spec ::= 'Te' bridge-spec // outlined objective c method call

entity-spec ::= decl-name function-signature generic-signature? 'F' // function
entity-spec ::= storage-spec
entity-spec ::= type file-discriminator? 'i' ACCESSOR // subscript
entity-spec ::= decl-name type 'v' ACCESSOR // variable
entity-spec ::= decl-name type 'fp' // generic type parameter
entity-spec ::= decl-name type 'fo' // enum element (currently not used)

storage-spec ::= type file-discriminator? 'i' ACCESSOR
storage-spec ::= decl-name type 'v' ACCESSOR

ACCESSOR ::= 'm' // materializeForSet
ACCESSOR ::= 's' // setter
ACCESSOR ::= 'g' // getter
Expand Down