-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AST Validation - Function Declarators/Types (#80)
- Add `AstNodeKind::ParamDecl` - Finish initial code for `validate_declarations` - Make type printing a little nicer - Make `Symbol` not an `enum` - Add `id` field to `Ast` and use it to write `rebuild_indices` function - "Parallelized" `validate_declarations`
- Loading branch information
Showing
17 changed files
with
1,050 additions
and
415 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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,44 @@ | ||
int main(int argc, char** argv) {} | ||
|
||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} | ||
int asdf(int a) {} |
This file contains 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
Oops, something went wrong.