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
For example, here's how JS_SOURCE_CONTEXT_NONE is defined in the original header:
JS_SOURCE_CONTEXT_NONE
const JsSourceContext JS_SOURCE_CONTEXT_NONE = (JsSourceContext)-1;
But here's what shows up in metadata:
public const UIntPtr JS_SOURCE_CONTEXT_NONE = default(UIntPtr);
Many dozens of other such examples. Perhaps an assert that verifies each constant has a literal value would help to avoid regressions.
Another example:
static const WCHAR g_wszWMUse_DRM[] = L"Use_DRM";
Becomes:
public const string g_wszWMUse_DRM = null;
The text was updated successfully, but these errors were encountered:
The ones in the bug are fixed. If you see others let me know.
Sorry, something went wrong.
No branches or pull requests
For example, here's how
JS_SOURCE_CONTEXT_NONE
is defined in the original header:But here's what shows up in metadata:
Many dozens of other such examples. Perhaps an assert that verifies each constant has a literal value would help to avoid regressions.
Another example:
Becomes:
The text was updated successfully, but these errors were encountered: