Skip to content
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

Add docs for inline io and mixins #1057

Merged
merged 5 commits into from
Jan 20, 2022
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
Next Next commit
Add inline io abnf
  • Loading branch information
JordonPhillips committed Jan 18, 2022
commit 60c44c3f45ef1d4bb1cfe268e5e527d43cce1044
6 changes: 5 additions & 1 deletion docs/source/1.0/spec/core/idl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,17 @@ The Smithy IDL is defined by the following ABNF:
:/ "bigDecimal" / "timestamp"
shape_members :"{" `ws` *(`shape_member_kvp` `ws`) "}"
shape_member_kvp :`trait_statements` `identifier` `ws` ":" `ws` `shape_id`
inlineable_properties :"{" *(`inlineable_property` `ws`) `ws` "}"
inlineable_property :`node_object_kvp` / `inline_structure`
inline_structure :`node_object_key` `ws` ":=" `ws` `inline_structure_value`
inline_structure_value :`trait_statements` [`mixins` ws] shape_members
list_statement :"list" `ws` `identifier` `ws` `shape_members`
set_statement :"set" `ws` `identifier` `ws` `shape_members`
map_statement :"map" `ws` `identifier` `ws` `shape_members`
structure_statement :"structure" `ws` `identifier` `ws` `shape_members`
union_statement :"union" `ws` `identifier` `ws` `shape_members`
service_statement :"service" `ws` `identifier` `ws` `node_object`
operation_statement :"operation" `ws` `identifier` `ws` `node_object`
operation_statement :"operation" `ws` `identifier` `ws` `inlineable_properties`
resource_statement :"resource" `ws` `identifier` `ws` `node_object`

.. rubric:: Traits
Expand Down