-
Notifications
You must be signed in to change notification settings - Fork 94
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
stop rendering overridden module vals #580
stop rendering overridden module vals #580
Conversation
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.
Most of the CI failures seems to come from Mdx, can you try rebasing on top of #591 ?
It happens, that this has to be merged first. |
You can import these changes in this PR like this:
Git will be smart enough to remove them from your branch when #591 is merged and you rebase again on top of master |
Signed-off-by: lubegasimon <lubegasimon73@gmail.com>
0a44168
to
c77755f
Compare
Signed-off-by: lubegasimon <lubegasimon73@gmail.com>
c77755f
to
4589202
Compare
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.
Looks good !
@@ -275,7 +313,7 @@ let extract_structure_tree_item item = | |||
| Tstr_open o -> | |||
((extract_extended_open o) :> extracted_items list) | |||
#endif | |||
| Tstr_eval _ | Tstr_value _ | |||
| Tstr_eval _ | |||
| Tstr_primitive _ | Tstr_typext _ |
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.
Tstr_primitive
binds a value too.
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 statement isn’t clear
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.
Tstr_primitive
correspond to:
external f : unit -> unit = "%primitive_name"
It should be treated as a value (as val f : unit -> unit
)
Signed-off-by: lubegasimon <lubegasimon73@gmail.com>
15a350d
to
d40779f
Compare
Fixes #508
after fix: