Skip to content

Autocomplete for recursive modules #194

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

Closed
shuufi opened this issue Apr 29, 2021 · 0 comments · Fixed by #219
Closed

Autocomplete for recursive modules #194

shuufi opened this issue Apr 29, 2021 · 0 comments · Fixed by #219
Labels
bug Something isn't working

Comments

@shuufi
Copy link

shuufi commented Apr 29, 2021

Hi, some example codes

module rec A: {
    type t

    @send external child: t => B.t = "child"
} = A

and B: {
    type t

    @send external parent: t => A.t = "parent"
} = B

module C = {
    type t

    @send external createA: t => A.t = "createA"
}

Using autocomplete for module C showing the function correctly.
image

But nothing for A and B

image
image

Thanks.

@cristianoc cristianoc added the bug Something isn't working label Apr 30, 2021
cristianoc added a commit that referenced this issue May 4, 2021
cristianoc added a commit that referenced this issue May 4, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants