You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at the resource-method definition and func-item definition in the WIT.md, expanding the 'func-item' case results in the application of a double semi colon:
resource-method ::= func-item ';'
| id ':' 'static' func-type ';'
| 'constructor' param-list ';'
func-item ::= id ':' func-type ';'
I believe the resource-method definition should be changed to the following to avoid this as the func-item brings its own semi colon
resource-method ::= func-item
| id ':' 'static' func-type ';'
| 'constructor' param-list ';'
func-item ::= id ':' func-type ';'
The text was updated successfully, but these errors were encountered:
alexcrichton
added a commit
to alexcrichton/component-model
that referenced
this issue
Oct 26, 2023
Looking at the resource-method definition and func-item definition in the WIT.md, expanding the 'func-item' case results in the application of a double semi colon:
I believe the resource-method definition should be changed to the following to avoid this as the func-item brings its own semi colon
The text was updated successfully, but these errors were encountered: