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
Currently trying to utilize this feature and have no idea how to make it work, it emits nothing, and there are no examples as to how to use it, and it does not exist on http://frhagn.github.io/Typewriter/pages/documentation.html
All attempts to use $IsAbstract in template code result in empty strings.
IsAbstract also exists on Type.BaseClass but not on Type?
Trying to use
$Type[$getAbstractString] string getAbstractString(Type c){ var baseClass = c.BaseClass; if (baseClass == null) return "no base class"; return baseClass.IsAbstract ? "true" : "false"; }
Results in no base class for an abstract type.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently trying to utilize this feature and have no idea how to make it work, it emits nothing, and there are no examples as to how to use it, and it does not exist on http://frhagn.github.io/Typewriter/pages/documentation.html
All attempts to use $IsAbstract in template code result in empty strings.
IsAbstract also exists on Type.BaseClass but not on Type?
Trying to use
Results in no base class for an abstract type.
The text was updated successfully, but these errors were encountered: