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
Version tplant: 3.1.1
3.1.1
Problem when a class is in a different namespace, the relation to that class is not represented.
Problem
Cause
namespace classes { export abstract class AbstractPrefix { abstract prefix: string; } } export class Greeter extends classes.AbstractPrefix { greeting: string; prefix: string = "Hello, "; //... rest of the sample }
Output
Expected output
Expected
The text was updated successfully, but these errors were encountered:
Also, inverting the test, also generates an expected output.
Example
namespace all { export abstract class AbstractPrefix { abstract prefix: string; } namespace classes { export class Greeter extends AbstractPrefix { greeting: string; prefix: string = "Hello, "; //... rest of the sample } } }
Generates output
Generates
Sorry, something went wrong.
For additional context, I'm trying to use your wonder-tool in our repo, hence finding these problems. :)
No branches or pull requests
Version tplant:
3.1.1
Problem
when a class is in a different namespace, the relation to that class is not represented.Cause
Output
Expected
outputThe text was updated successfully, but these errors were encountered: