Add support for more slice types in WebIDL

Add support for the primitive type arrays, and additionally switch `ByteString`
to `String` instead of `Vec<u8>` according to the online documentation.
This commit is contained in:
Alex Crichton
2018-07-19 08:45:08 -07:00
parent 4013fd90a7
commit 4eaa1a5639
3 changed files with 169 additions and 24 deletions

View File

@ -5,3 +5,4 @@ mod consts;
mod enums;
mod simple;
mod throws;
mod array;