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, using the @:dox(hide) field works only if every platform is compiled with this meta-data.
@:dox(hide)
It would be great if @:dox(hide) or another meta-field allowed support for logically flagging a field as unavailable.
For example, the following would compile as "Available for all platforms":
public static function encode( s : String ) : String { throw "Not implemented"; }
The goal is to be able to support something such as:
#if (!cpp && !neko) @:dox(hide) #end public static function encode( s : String ) : String { throw "Not implemented"; }
To get "Available on cpp,neko"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, using the
@:dox(hide)
field works only if every platform is compiled with this meta-data.It would be great if
@:dox(hide)
or another meta-field allowed support for logically flagging a field as unavailable.For example, the following would compile as "Available for all platforms":
The goal is to be able to support something such as:
To get "Available on cpp,neko"
The text was updated successfully, but these errors were encountered: