good first bughelp wanted
Métriques du dépôt
- Stars
- (27 361 stars)
- Métriques de merge PR
- (Merge moyen 19j 10h) (147 PRs mergées en 30 j)
Description
The following IDL does not generate correct bindings:
interface CTest
{
void CTest();
void OnStartElement([Const] DOMString pszName, [Const] DOMString[] papszAttrs);
};
[JSImplementation = "CTest"]
interface CTestJS {
void CTestJS();
void OnStartElement([Const] DOMString pszName, [Const] DOMString[] papszAttrs);
};
Specifically both pszName + papszAttrs end up in the JS code as pointers.