2025-11-28 05:52:08 +00:00
|
|
|
<error_declaration> ::= <inherited_error_type>
|
2025-11-25 03:48:14 +00:00
|
|
|
"{" <error_body>? "}"
|
|
|
|
|
|
2025-11-28 05:52:08 +00:00
|
|
|
<inherited_error_type> ::= [<parent_error> "/"]? <child_error>
|
|
|
|
|
|
|
|
|
|
<parent_error> ::= <identifier>
|
|
|
|
|
|
|
|
|
|
<child_error> ::= <identifier>
|
|
|
|
|
|
2025-11-25 03:48:14 +00:00
|
|
|
<error_body> ::= (<variable_declaration>
|
|
|
|
|
| <constant_declaration>
|
|
|
|
|
| <function_declaration>)*
|
2025-11-28 05:52:08 +00:00
|
|
|
|