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
Rsc misses out on including the package type as a prefix.
package foo object O { class D } class C extends O.D
tag: CLASSINFOtpe sym: foo.#C# parents { tag: TYPEREFtpe pre { - tag: SINGLEtpe - pre { - tag: THIStpe - sym: foo.# - } - sym: foo.#O. + tag: THIStpe + sym: foo.#O.# } sym: foo.#O.#D# } } }
The text was updated successfully, but these errors were encountered:
Intriguingly, naively recursing into the prefixes for emitting causes return type information to be wrong:
info { tag: METHODtpe ret { tag: TYPEREFtpe pre { - tag: THIStpe - sym: foo.#O.# + tag: SINGLEtpe + pre { + tag: THIStpe + sym: foo.# + } + sym: foo.#O. } sym: foo.#O.#D# } } }
Sorry, something went wrong.
No branches or pull requests
Rsc misses out on including the package type as a prefix.
The text was updated successfully, but these errors were encountered: