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
When bsc emit the definitions it seems that both enums and interfaces are missing.
bsc
enum
interface
starting from this example.bs
example.bs
interface Foo field as string end interface enum Bar value end enum function baz(parameter as Foo) as Bar return Bar.value end function
the example.d.bs file generated is
example.d.bs
interface Foo field as string end interface enum Bar value end enum function baz(parameter as object) as object end function
now baz has lost the type definition and return value information.
baz
I'm using
$ npx bsc --version 0.60.6
The text was updated successfully, but these errors were encountered:
Nice catch! I just put up PR #757 to address this.
Sorry, something went wrong.
This has been fixed in v0.61.1
Successfully merging a pull request may close this issue.
When
bsc
emit the definitions it seems that bothenum
s andinterface
s are missing.starting from this
example.bs
the
example.d.bs
file generated isnow
baz
has lost the type definition and return value information.I'm using
The text was updated successfully, but these errors were encountered: