Introduce the wasm-bindgen-webidl frontend

This is still a work in progress. Parse WebIDL source text and convert it into
wasm-bindgen AST, so that we can automatically emit bindings for the types and
functions described in the WebIDL.
This commit is contained in:
Nick Fitzgerald
2018-05-25 17:51:48 -07:00
parent daabbbd06e
commit 3879f6f427
7 changed files with 228 additions and 0 deletions

View File

@ -0,0 +1,3 @@
use super::backend;
assert_parse!(empty, "", backend::ast::Program::default());