This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 656
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR removes the `Decl` union type because it might be misleading. It could be understood to contain any possible declaration whereas it only contains declarations that are allowed in `export` statements. However, it doesn't include other identifier declarations like: named `function expressions`, `class expressions`, parameters, etc.... We may want to re-introduce a form of `Decl` in the future if we see usage for it.
- Loading branch information
1 parent
cc8f424
commit 77c6cc8
Showing
6 changed files
with
470 additions
and
446 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
mod decl; | ||
mod fn_decl; | ||
mod variable_declaration_statement; |
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.