-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix #9339: Register doc of extension methods #9375
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
ctx | ||
case _ => | ||
ctx | ||
} | ||
recur(expanded(origStat)) | ||
recur(expanded(origStat), 0) |
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.
This idx
parameter looks really ugly and kludgy. Can't we instead add an origin
parameter to recur
which is usually the same as origStat
but in the Thicket
-ExtMethods
case it's the appropriate element of t.methods
?
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.
I changed it.
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.
That did not work, but I found a much simpler solution
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! This is definitely a nicer version.
No description provided.