mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
WIP: Accept typed array arguments in codegen
This commit is contained in:
parent
a0f2d618ee
commit
e025bbb079
5 changed files with 76 additions and 6 deletions
|
@ -248,6 +248,9 @@ interface TestBinding {
|
|||
void passByteString(ByteString arg);
|
||||
void passEnum(TestEnum arg);
|
||||
void passInterface(Blob arg);
|
||||
void passTypedArray(Int8Array arg);
|
||||
void passTypedArray2(ArrayBuffer arg);
|
||||
void passTypedArray3(ArrayBufferView arg);
|
||||
void passUnion((HTMLElement or long) arg);
|
||||
void passUnion2((Event or DOMString) data);
|
||||
void passUnion3((Blob or DOMString) data);
|
||||
|
@ -258,6 +261,7 @@ interface TestBinding {
|
|||
void passUnion8((sequence<ByteString> or long) arg);
|
||||
void passUnion9((TestDictionary or long) arg);
|
||||
void passUnion10((DOMString or object) arg);
|
||||
void passUnion11((ArrayBuffer or ArrayBufferView) arg);
|
||||
void passUnionWithTypedef((Document or TestTypedef) arg);
|
||||
void passUnionWithTypedef2((sequence<long> or TestTypedef) arg);
|
||||
void passAny(any arg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue