12 lines
291 B
BNF
12 lines
291 B
BNF
|
|
<program> ::= <use_statement>* <declaration>*
|
||
|
|
|
||
|
|
<use_statement> ::= "use" <identifier> ("." <identifier>)* ";"
|
||
|
|
|
||
|
|
<declaration> ::= <type_declaration> | <interface_declaration>
|
||
|
|
|
||
|
|
import "types.bnf"
|
||
|
|
import "statements.bnf"
|
||
|
|
import "functions.bnf"
|
||
|
|
import "expressions.bnf"
|
||
|
|
import "identifiers.bnf"
|