-
Notifications
You must be signed in to change notification settings - Fork 6
(feat) Semantic Check: ADTs et alia #60
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
Conversation
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
yliang412
approved these changes
Apr 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Co-authored-by: Yuchen Liang <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Semantic Analysis
Performs the following semantic analysis for our DSL.
adt_check
In
semantic_check/adt_check.rs
:or, more elaborate:
Detects whether
Logical
,Physical
,LogicalProperties
, andPhysicalProperties
types are defined, and are not the children of any other types.Checks for duplicate fields in ADTs.
product
types may only contain [Logical] or Logical fields.product
types may only contain [Physical] or Physical fields.from_ast
In
from_ast
, I made the code process ADT definition first. This allows us to perform the following extra semantic analysis:Constructors
andPatterns
are properly defined.HIR
version.bug fix & others
The parser was parsing
None
as aConstructor
. I have changed the syntax tonone
lowercase, and fixed the parser code correspondingly.Refactored
AnalyzerErrorKind
to beBoxed
, as clippy was complaining the type was getting too big.Made
subtypes
inTypeRegistry
aBTreeMap
so that iterating over all keys is deterministic across compilations.One semantic check I didn't implement is verifying the number of arguments in constructors, patterns, and function calls. This will be addressed in a future PR for patterns and constructors. For function calls, this validation will be handled in the type inference PR since functions are first-class values in our language, making it more sensible to perform there (especially since calls are also used for arrays, maps, and tuples).