We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
eg. In this scenario In will be implicitly private due to its use by Private(), but needs to be subsequently exported by its use by Exported().
In
Private()
Exported()
type In struct {} //ftl:verb func Private(ctx context.Context, in In) error {} //ftl:verb export func Exported(ctx context.Context, in In) error {}
Same should be true of any visibility propagation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
eg. In this scenario
In
will be implicitly private due to its use byPrivate()
, but needs to be subsequently exported by its use byExported()
.Same should be true of any visibility propagation.
The text was updated successfully, but these errors were encountered: