2025-11-28 08:15:35 +00:00
|
|
|
<interface_declaration> ::= "@" (<interface_parent> "/")? <interface_child>
|
2025-11-28 05:52:08 +00:00
|
|
|
"{" <interface_body> "}"
|
2025-11-24 23:17:20 +00:00
|
|
|
|
2025-11-28 05:52:08 +00:00
|
|
|
<interface_parent> ::= <identifier>
|
|
|
|
|
|
|
|
|
|
<interface_child> ::= <identifier>
|
2025-11-24 23:17:20 +00:00
|
|
|
|
|
|
|
|
<interface_body> ::= <interface_method_declaration>*
|
|
|
|
|
|
|
|
|
|
<interface_method_declaration> ::=
|
2025-11-28 08:15:35 +00:00
|
|
|
<accessibility_modifier> <function_keyword> <identifier> <function_signature> ";"
|
2025-11-24 23:17:20 +00:00
|
|
|
|
2025-11-28 08:15:35 +00:00
|
|
|
<interface_implementation> ::= <arrow_keyword> "[" <interface_identifier_list> "]"
|
2025-11-24 23:17:20 +00:00
|
|
|
|