-
Notifications
You must be signed in to change notification settings - Fork 46
Add EBNF for AST to book #1066
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
Merged
Merged
Add EBNF for AST to book #1066
Changes from 5 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
64c9561
Add EBNF for AST to book
cmester0 9d69c95
Add some description to EBNF
cmester0 1d9da95
Merge branch 'main' into AST-EBNF-documentation
cmester0 8a0c8a9
Update ast_ebnf.md
cmester0 9692b39
Update ast_ebnf.md
cmester0 0bbe2b2
Add EBNF to summary of book
cmester0 5abc947
Update ast_ebnf.md
cmester0 0d12b3d
Update ast_ebnf.md
cmester0 29c4aac
Merge branch 'main' into AST-EBNF-documentation
cmester0 3031479
Update SUMMARY.md
cmester0 66c9f87
Update SUMMARY.md
cmester0 1edfe2f
Make it work for visualization
cmester0 bfbf8ba
Update ast_ebnf.md
cmester0 9ababbb
Backport paper EBNF
cmester0 3274575
misc(ebnf): fixes and uniformization
W95Psp b3f28bb
misc(ebnf): fix dyn
W95Psp fe0c1e5
resolve conflict
W95Psp 6a658e5
Merge branch 'main' into AST-EBNF-documentation
W95Psp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,237 @@ | ||
| We currently take inputs from the following AST (visualization can be done | ||
| using <https://rr.red-dove.com/ui>). Literals are strings, numbers and | ||
| booleans | ||
|
|
||
| ``` ebnf | ||
| char ::= [a-zA-Z] | ||
| string ::= char* | ||
| digit ::= [0-9] | ||
| uint ::= digit+ | ||
| int ::= ("-")? uint | ||
| float ::= int (".")? uint | ||
| bool ::= "true" | "false" | ||
|
|
||
| literal ::= | ||
| | "\"" string "\"" | ||
| | "'" char "'" | ||
| | int | ||
| | float | ||
| | bool | ||
| ``` | ||
|
|
||
| We support a number of simple types characters, strings, booleans and | ||
| numbers. Number types for integers (8,16,32,64,128 bit or machine sized) | ||
| and floats (16,32, or 64 bit). Composite types are tuples, fixed length | ||
| lists (arrays), variable length lists (vectors/slices), ptr types, and | ||
| function types. Lastly we have named types defined by items, e.g. enums | ||
| and structs. | ||
|
|
||
| ``` ebnf | ||
| generic_value ::= | ||
| | "'" ident | ||
| | ty | ||
| | expr | ||
|
|
||
| impl ::= | ||
| | "self" | ||
| | goal | ||
| | "dyn" | ||
| | <!TODO!> | ||
| goal ::= ident "<" (generic_value ",")* ">" | ||
|
|
||
| ty ::= | ||
| | "bool" | ||
| | "char" | ||
| | "u8" | "u16" | "u32" | "u64" | "u128" | "usize" | ||
| | "i8" | "i16" | "i32" | "i64" | "i128" | "isize" | ||
| | "f16" | "f32" | "f64" | ||
| | "str" | ||
| | (ty ",")* | ||
| | "[" ty ";" int "]" | ||
| | "[" ty "]" | ||
| | "*const" ty | "*mut" ty | ||
| | "*" expr | "*mut" expr | ||
| | ident | ||
| | (ty "->")* ty | ||
| | impl "::" ident | ||
| | "impl" ty | ||
| | (goal)* | ||
W95Psp marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ``` | ||
|
|
||
| The patterns allowed reflect these types. Wildcard patterns, literal | ||
| types, typed patterns, list patterns, record or tuple patterns. | ||
|
|
||
| ``` ebnf | ||
| pat ::= | ||
| | "_" | ||
| | pat ":" ty | ||
| | (ident "{" (ident ":" pat ";")* "}" | ident "(" (pat ",")* ")" ) | ||
| | (pat "|")* pat | ||
| | ("[" (expr ",")* "]" | "[" expr ";" int "]") | ||
| | "&" pat | ||
| | literal | ||
| | ident "@" pat | ||
cmester0 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ``` | ||
|
|
||
| The simple expressions are literals, local or global variables, type | ||
| casts, assignments and lists. Control flow expressions, if statements, | ||
| match statements, loops, return, break and continue. The rest is blocks, | ||
| macro calls, lambda functions and borrowing. | ||
|
|
||
| ``` ebnf | ||
| local_var ::= ident | ||
| global_var ::= ident | ||
|
|
||
| modifiers ::= "" | "unsafe" modifiers | "const" modifiers | ||
|
|
||
| lhs ::= pat | ||
| param ::= pat | ||
|
|
||
| expr ::= | ||
| | "if" expr "{" expr "}" ("else" "{" expr "}")? | ||
| | expr "(" (expr ",")* ")" | ||
| | literal | ||
| | "[" (expr ",")* "]" | "[" expr ";" int "]" | ||
| | ident "(" (expr ",")* ")" | ident "{" (ident ":"expr ";")* "}" | ident "{" (ident ":"expr ";")* ".." expr "}" | ||
| | "match" expr "{" (("|" pat)* "=>" (expr "," | "{" expr "}"))* "}" | ||
| | "let" pat (":" ty)? ":=" expr ";" expr | ||
| | modifiers "{" expr "}" | ||
| | local_var | ||
| | global_var | ||
| | expr "as" ty | ||
| | loops_expr | ||
| | lhs "=" expr | ||
| | "return" expr | ||
| | expr "?" | ||
| | "&" ("mut")? expr | ||
| | "&" expr "as" "&const _" | "&mut" expr "as" "&mut _" | ||
| | "|" param "|" expr | ||
|
|
||
| loops_expr ::= | ||
| | "loop" "{" expr "}" | ||
| | "while" "(" expr ")" "{" expr "}" | ||
| | "for" "(" pat "in" expr ")" "{" expr "}" | ||
| | "for" "(" "let" ident "in" expr ".." expr ")" "{" expr "}" | ||
| | "break" expr | ||
| | "continue" | ||
| ``` | ||
|
|
||
| The items supported are functions, type aliasing, enums, structs, trait | ||
| definitions and implementations, and imports. | ||
|
|
||
| ``` ebnf | ||
| item ::= | ||
| | modifiers "fn" ident "(" (pat ":" ty ",")* ")" (":" ty)? "{" expr "}" | ||
| | "type" ident "=" ty | ||
| | "enum" ident "=" "{" (ident ("(" (ty)* ")")? ",")* "}" | ||
| | "struct" ident "=" "{" (ident ":" ty ",")* "}" | ||
| | "trait" ident "{" (trait_item)* "}" | ||
| | "impl" ("<" (generics ",")* ">")? ident "for" ty "{" (impl_item)* "}" | ||
| | "use" path ";" | ||
| ``` | ||
|
|
||
| The full AST description | ||
W95Psp marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ``` ebnf | ||
| char ::= [a-zA-Z] | ||
| string ::= char* | ||
| digit ::= [0-9] | ||
| uint ::= digit+ | ||
| int ::= ("-")? uint | ||
| float ::= int (".")? uint | ||
| bool ::= "true" | "false" | ||
|
|
||
| literal ::= | ||
| | "\"" string "\"" | ||
| | "'" char "'" | ||
| | int | ||
| | float | ||
| | bool | ||
|
|
||
| ident ::= string | ||
|
|
||
| generic_value ::= | ||
| | "'" ident | ||
| | ty | ||
| | expr | ||
|
|
||
| impl ::= | ||
| | "self" | ||
| | goal | ||
| | "dyn" | ||
| | <!TODO!> | ||
| goal ::= ident "<" (generic_value ",")* ">" | ||
|
|
||
| ty ::= | ||
| | "bool" | ||
| | "char" | ||
| | "u8" | "u16" | "u32" | "u64" | "u128" | "usize" | ||
| | "f16" | "f32" | "f64" | ||
| | "str" | ||
| | (ty ",")* | ||
| | ident "(" (ident ",")* ")" | ||
| | "[" ty ";" int "]" | ||
| | "[" ty "]" | ||
| | "*const" ty | "*mut" ty | ||
| | "*" expr | "*mut" expr | ||
| | ident | ||
| | (ty "->")* ty | ||
| | impl "::" ident | ||
| | "impl" ty | ||
| | "dyn" (goal)* | ||
|
|
||
| pat ::= | ||
| | "_" | ||
| | pat ":" | ||
| | (ident "{" (ident ":" pat ";")* "}" | ident "(" (pat ",")* ")" ) | ||
| | (pat "|")* pat | ||
| | ("[" (expr ",")* "]" | "[" expr ";" int "]") | ||
| | "&" pat | ||
| | literal | ||
| | ident "@" pat | ||
|
|
||
| local_var ::= ident | ||
| global_var ::= ident | ||
|
|
||
| modifiers ::= "" | "unsafe" modifiers | "const" modifiers | ||
|
|
||
| lhs ::= pat | ||
| param ::= pat | ||
|
|
||
| expr ::= | ||
| | "if" expr "{" expr "}" ("else" "{" expr "}")? | ||
| | expr "(" (expr ",")* ")" | ||
| | literal | ||
| | "[" (expr ",")* "]" | "[" expr ";" int "]" | ||
| | ident "(" (expr ",")* ")" | ident "{" (ident ":"expr ";")* "}" | ident "{" (ident ":"expr ";")* ".." expr "}" | ||
| | "match" expr "{" (("|" pat)* "=>" (expr "," | "{" expr "}"))* "}" | ||
| | "let" pat (":" ty)? ":=" expr ";" expr | ||
| | modifiers "{" expr "}" | ||
| | local_var | ||
| | global_var | ||
| | expr "as" ty | ||
| | loops_expr | ||
| | lhs "=" expr | ||
| | "return" expr | ||
| | expr "?" | ||
| | "&" ("mut")? expr | ||
| | "&" expr "as" "&const _" | "&mut" expr "as" "&mut _" | ||
| | "|" param "|" expr | ||
|
|
||
| loops_expr ::= | ||
| | "loop" "{" expr "}" | ||
| | "while" "(" expr ")" "{" expr "}" | ||
| | "for" "(" pat "in" expr ")" "{" expr "}" | ||
| | "for" "(" "let" ident "in" expr ".." expr ")" "{" expr "}" | ||
| | "break" expr | ||
| | "continue" | ||
|
|
||
| item ::= | ||
| | modifiers "fn" ident "(" (pat ":" ty ",")* ")" (":" ty)? "{" expr "}" | ||
| | "type" ident "=" ty | ||
| | "enum" ident "=" "{" (ident ("(" (ty)* ")")? ",")* "}" | ||
| | "struct" ident "=" "{" (ident ":" ty ",")* "}" | ||
| | "trait" ident "{" (trait_item)* "}" | ||
| | "impl" ("<" (generics ",")* ">")? ident "for" ty "{" (impl_item)* "}" | ||
| | "use" path ";" | ||
| ``` | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.