Support nullable typed arrays in codegen

This commit is contained in:
Igor Matuszewski 2018-03-13 13:05:04 +01:00
parent e025bbb079
commit 6beb32e28e
3 changed files with 5 additions and 2 deletions

View file

@ -294,6 +294,7 @@ interface TestBinding {
// void passNullableEnum(TestEnum? arg);
void passNullableInterface(Blob? arg);
void passNullableObject(object? arg);
void passNullableTypedArray(Int8Array? arg);
void passNullableUnion((HTMLElement or long)? arg);
void passNullableUnion2((Event or DOMString)? data);
void passNullableUnion3((DOMString or sequence<long>)? data);