-
Notifications
You must be signed in to change notification settings - Fork 74
Move class Scope from composite_nodes to internal_nodes
#5774
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
Conversation
It was accidentally moved over by #5605.
|
!test |
Auto-merge Status✅ Internal CI is finished Description
|
| Relevant files | |||||||||
|---|---|---|---|---|---|---|---|---|---|
| Enhancement |
|
PR Reviewer Guide
Here are some key observations to aid the review process:
| 🧪 No relevant tests |
| ⚡ No major issues detected |
Greptile SummaryThis PR correctly moves the Key changes:
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Before as Before PR
participant After as After PR
Before->>composite_nodes.h: Contains Scope class definition
Before->>composite_nodes.cpp: Contains Scope implementations
Before->>internal_nodes.h: Forward declares Scope (in base_nodes)
After->>composite_nodes.h: Scope class removed
After->>composite_nodes.cpp: Scope implementations removed
After->>internal_nodes.h: Scope class definition added
After->>internal_nodes.cpp: Scope implementations added
Note over After: Scope now properly belongs in internal_nodes<br/>where IfThenElse and similar classes live
|
naoyam
left a comment
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
It was accidentally moved over by #5605.